 04e50c9f89
			
		
	
	
		04e50c9f89
		
			
		
	
	
	
	
		
			
			* fbt: replaced debug dir paths with FBT_DEBUG_DIR * scripts: updated requirements.txt * fbt: fixed wrong import * fbt: removed delayed import for file2image * fbt: added UPDATE_BUNDLE_DIR internal var * fbt: cleaner internal management of extapps * applications: added fap_libs for core apps to link with resources when building with --extra-ext-apps * fbt: removed deprecation stub for faps * fbt: added quotation for icons build cmd * fbt: reworked BUILD_DIR & fap work dir handling; fap debug: using debug elf path from fbt * fbt: explicit LIB_DIST_DIR
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from re import search
 | |
| 
 | |
| from SCons.Errors import UserError
 | |
| 
 | |
| 
 | |
| def _get_device_serials(search_str="STLink"):
 | |
|     import serial.tools.list_ports as list_ports
 | |
| 
 | |
|     return set([device.serial_number for device in list_ports.grep(search_str)])
 | |
| 
 | |
| 
 | |
| def GetDevices(env):
 | |
|     serials = _get_device_serials()
 | |
|     if len(serials) == 0:
 | |
|         raise UserError("No devices found")
 | |
| 
 | |
|     print("\n".join(serials))
 | |
| 
 | |
| 
 | |
| def generate(env, **kw):
 | |
|     env.AddMethod(GetDevices)
 | |
|     env.SetDefault(
 | |
|         FBT_DEBUG_DIR="${ROOT_DIR}/debug",
 | |
|     )
 | |
| 
 | |
|     if (adapter_serial := env.subst("$OPENOCD_ADAPTER_SERIAL")) != "auto":
 | |
|         env.Append(
 | |
|             OPENOCD_OPTS=[
 | |
|                 "-c",
 | |
|                 f"adapter serial {adapter_serial}",
 | |
|             ]
 | |
|         )
 | |
| 
 | |
|     # Final command is "init", always explicitly added
 | |
|     env.Append(
 | |
|         OPENOCD_OPTS=["-c", "init"],
 | |
|     )
 | |
| 
 | |
|     env.SetDefault(
 | |
|         OPENOCD_GDB_PIPE=[
 | |
|             "|openocd -c 'gdb_port pipe; log_output ${FBT_DEBUG_DIR}/openocd.log' ${[SINGLEQUOTEFUNC(OPENOCD_OPTS)]}"
 | |
|         ],
 | |
|         GDBOPTS_BASE=[
 | |
|             "-ex",
 | |
|             "target extended-remote ${GDBREMOTE}",
 | |
|             "-ex",
 | |
|             "set confirm off",
 | |
|             "-ex",
 | |
|             "set pagination off",
 | |
|         ],
 | |
|         GDBOPTS_BLACKMAGIC=[
 | |
|             "-ex",
 | |
|             "monitor swdp_scan",
 | |
|             "-ex",
 | |
|             "monitor debug_bmp enable",
 | |
|             "-ex",
 | |
|             "attach 1",
 | |
|             "-ex",
 | |
|             "set mem inaccessible-by-default off",
 | |
|         ],
 | |
|         GDBPYOPTS=[
 | |
|             "-ex",
 | |
|             "source ${FBT_DEBUG_DIR}/FreeRTOS/FreeRTOS.py",
 | |
|             "-ex",
 | |
|             "source ${FBT_DEBUG_DIR}/flipperapps.py",
 | |
|             "-ex",
 | |
|             "fap-set-debug-elf-root ${FBT_FAP_DEBUG_ELF_ROOT}",
 | |
|             "-ex",
 | |
|             "source ${FBT_DEBUG_DIR}/PyCortexMDebug/PyCortexMDebug.py",
 | |
|             "-ex",
 | |
|             "svd_load ${SVD_FILE}",
 | |
|             "-ex",
 | |
|             "compare-sections",
 | |
|         ],
 | |
|         JFLASHPROJECT="${FBT_DEBUG_DIR}/fw.jflash",
 | |
|     )
 | |
| 
 | |
| 
 | |
| def exists(env):
 | |
|     return True
 |