helping C&K

This commit is contained in:
rusefillc 2023-06-25 09:59:46 -04:00 committed by Andrey
parent b5627131ff
commit 5812210afa
2 changed files with 10 additions and 0 deletions

View File

@ -158,3 +158,8 @@ int getAdcChannelPin(adc_channel_e hwChannel) {
}
#endif /* HAL_USE_ADC */
EXTERNC int getRemainingStack(thread_t *otp) {
// todo: would stm32 code actually work here since similar Cortex?
return 888888;
}

View File

@ -133,3 +133,8 @@ void jump_to_bootloader() {
NVIC_SystemReset();
}
#endif /* EFI_DFU_JUMP */
EXTERNC int getRemainingStack(thread_t *otp) {
// todo: would stm32 code actually work here since similar Cortex?
return 888888;
}