 9ffcc52ada
			
		
	
	
		9ffcc52ada
		
			
		
	
	
	
	
		
			
			* mifare ultralight auth prototype * it works! * Reference source * use countof * rework everything * oops forgot scenes * build: revert changes in manifest, stack size * build: fix buid, format sources * nfc: update unlock ultralight GUI * nfc: fix byte input header * nfc: add new scenes for locked ultralight * nfc: add data read to ultralights * nfc: add unlock option in mf ultralight menu * nfc: add data read init in ultralight generation * nfc: lin sources, fix unlocked save * nfc: format python sources * nfc: clean up Co-authored-by: gornekich <n.gorbadey@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			396 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			396 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Import("env")
 | |
| 
 | |
| env.Append(
 | |
|     CPPPATH=[
 | |
|         "#/lib/mbedtls",
 | |
|         "#/lib/mbedtls/include",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| 
 | |
| libenv = env.Clone(FW_LIB_NAME="mbedtls")
 | |
| libenv.ApplyLibFlags()
 | |
| 
 | |
| sources = [
 | |
|     "mbedtls/library/des.c",
 | |
|     "mbedtls/library/sha1.c",
 | |
|     "mbedtls/library/platform_util.c",
 | |
| ]
 | |
| 
 | |
| lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | |
| libenv.Install("${LIB_DIST_DIR}", lib)
 | |
| Return("lib")
 |