* add name field to usbd_class_driver_t * ci: use set matrix py script * add riscv32 and cmake support for ch32v307, fomu, gd32vf103 * update build_cmake.py to take --family --board --toolchain * separate hil test to its own workflow * move esp32 board into separated hil json * add make build to ci * remov build_make.py * build.py support esp32 board * setup toolchain support esp-idf * fix missing click * merge family in matrix build to reduce jobs * skip cifuzz since it still has issue with get_deps and click
		
			
				
	
	
		
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(JLINK_DEVICE gd32vf103cbt6)
 | 
						|
 | 
						|
set(SDK_BSP_DIR ${SOC_DIR}/Board/gd32vf103c_longan_nano)
 | 
						|
set(LD_FILE_GNU ${SDK_BSP_DIR}/Source/GCC/gcc_gd32vf103xb_flashxip.ld)
 | 
						|
 | 
						|
function(update_board TARGET)
 | 
						|
  target_sources(${TARGET} PUBLIC
 | 
						|
    ${SDK_BSP_DIR}/Source/gd32vf103c_longan_nano.c
 | 
						|
    )
 | 
						|
  target_include_directories(${TARGET} PUBLIC
 | 
						|
    ${SDK_BSP_DIR}/Include
 | 
						|
    )
 | 
						|
endfunction()
 |