Adds a new cmsis_core INTERFACE library, which provides the basic CMSIS macros/definitions, and RP2040.h and system_RP2040.h By default the isr_ methods in the vector table are renamed to their CMSIS versions, but this can be overridden by defining PICO_CMSIS_RENAME_EXCEPTIONS=0
		
			
				
	
	
		
			4 lines
		
	
	
		
			140 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			4 lines
		
	
	
		
			140 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| add_executable(cmsis_test cmsis_test.c)
 | |
| 
 | |
| target_link_libraries(cmsis_test PRIVATE pico_stdlib cmsis_core)
 | |
| pico_add_extra_outputs(cmsis_test) |