 0adad32418
			
		
	
	
		0adad32418
		
			
		
	
	
	
	
		
			
			* fbt: fixed py scripts for gdb * fbt: removed compiled dolphin assets from tracked files; resolved cached dependency issues by globally disabling deps cache; changed dependency tracking for dolphin assets * fbt: fix for "resources" node lookup * toolchain: bump to v.16 with scons + x64 win binaries * fbt: using scons from toolchain * vscode: fixed paths for 64-bit Windows toolchain * fbt: added colors! * fbt: moved import validator to ansi lib coloring * fbt: moved COMSTR vars to tools * fbt: custom action for fap dist * fbt: added OPENOCD_ADAPTER_SERIAL configuration var for openocd operations * fbt: added get_stlink target * docs: details on libs for faps * vscode: added DAP config for using Flipper as a debugger for a 2nd Flipper * fbt: blind deps fix for sdk_origin * fbt: sdk: moved deployment actions to pure python * Github: disable disableLicenseExpirationCheck option for pvs Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from SCons.Builder import Builder
 | |
| from SCons.Action import Action
 | |
| import SCons
 | |
| 
 | |
| __OBJCOPY_ARM_BIN = "arm-none-eabi-objcopy"
 | |
| __NM_ARM_BIN = "arm-none-eabi-nm"
 | |
| 
 | |
| 
 | |
| def generate(env):
 | |
|     env.SetDefault(
 | |
|         BIN2DFU="${ROOT_DIR.abspath}/scripts/bin2dfu.py",
 | |
|         OBJCOPY=__OBJCOPY_ARM_BIN,  # FIXME
 | |
|         NM=__NM_ARM_BIN,  # FIXME
 | |
|     )
 | |
| 
 | |
|     if not env["VERBOSE"]:
 | |
|         env.SetDefault(
 | |
|             HEXCOMSTR="\tHEX\t${TARGET}",
 | |
|             BINCOMSTR="\tBIN\t${TARGET}",
 | |
|             DFUCOMSTR="\tDFU\t${TARGET}",
 | |
|         )
 | |
| 
 | |
|     env.Append(
 | |
|         BUILDERS={
 | |
|             "HEXBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${OBJCOPY} -O ihex "${SOURCE}" "${TARGET}"',
 | |
|                     "${HEXCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".hex",
 | |
|                 src_suffix=".elf",
 | |
|             ),
 | |
|             "BINBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${OBJCOPY} -O binary -S "${SOURCE}" "${TARGET}"',
 | |
|                     "${BINCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".bin",
 | |
|                 src_suffix=".elf",
 | |
|             ),
 | |
|             "DFUBuilder": Builder(
 | |
|                 action=Action(
 | |
|                     '${PYTHON3} "${BIN2DFU}" -i "${SOURCE}" -o "${TARGET}" -a ${IMAGE_BASE_ADDRESS} -l "Flipper Zero F${TARGET_HW}"',
 | |
|                     "${DFUCOMSTR}",
 | |
|                 ),
 | |
|                 suffix=".dfu",
 | |
|                 src_suffix=".bin",
 | |
|             ),
 | |
|         }
 | |
|     )
 | |
| 
 | |
| 
 | |
| def exists(env):
 | |
|     try:
 | |
|         return env["OBJCOPY"]
 | |
|     except KeyError:
 | |
|         pass
 | |
| 
 | |
|     if objcopy := env.WhereIs(__OBJCOPY_ARM_BIN):
 | |
|         return objcopy
 | |
| 
 | |
|     raise SCons.Errors.StopError("Could not detect objcopy for arm")
 |