mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2026-03-14 21:19:43 +01:00
- stack should remain properly aligned - risc-v was actually completely broken for user defined handlers because GCC was auto-pushing vaargs for naked function even with no stack frame - new implementation supports full call stacks in gdb for Arm or RISC-V when hitting breakpoint in panic function - new config defines make it explicit that gdb full stgack trace comes at the cost of corrupting stack based vaargs 4th is corrupted on Arm, later on RiSC-V (7 maybe?)
17 lines
545 B
CMake
17 lines
545 B
CMake
add_subdirectory(pico_test)
|
|
|
|
add_subdirectory(pico_stdlib_test)
|
|
add_subdirectory(pico_stdio_test)
|
|
add_subdirectory(pico_time_test)
|
|
add_subdirectory(pico_divider_test)
|
|
add_subdirectory(panic_function_test)
|
|
if (PICO_ON_DEVICE)
|
|
add_subdirectory(pico_float_test)
|
|
add_subdirectory(kitchen_sink)
|
|
add_subdirectory(hardware_irq_test)
|
|
add_subdirectory(hardware_pwm_test)
|
|
add_subdirectory(hardware_sync_spin_lock_test)
|
|
add_subdirectory(cmsis_test)
|
|
add_subdirectory(pico_sem_test)
|
|
add_subdirectory(pico_sha256_test)
|
|
endif()
|