* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 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
 | 
						|
    )
 | 
						|
    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")
 |