rusefi/firmware/bootloader/src/rusefi_stubs.cpp

29 lines
958 B
C++
Raw Normal View History

#include "pch.h"
2017-05-30 15:38:51 -07:00
#include "hardware.h"
2017-06-04 12:01:40 -07:00
/*
* We need only a small portion of code from rusEFI codebase in the bootloader.
2019-03-29 06:11:13 -07:00
* Mostly it's tunerstudio_io.cpp. And other files like efi_gpio.cpp etc. needed only to make it work.
2017-06-04 12:01:40 -07:00
* And stubs needed just to settle down compiler errors.
* The whole idea of bootloader is to make it as small as possible. And reasonably independent.
*/
2017-05-30 15:38:51 -07:00
2021-03-15 03:45:06 -07:00
void chDbgPanic3(const char* /*msg*/, const char* /*file*/, int /*line*/) {
2017-05-30 15:38:51 -07:00
}
2023-12-26 12:31:31 -08:00
void logHardFault(uint32_t type, uintptr_t faultAddress, struct port_extctx* ctx, uint32_t csfr) { }
2017-05-30 15:38:51 -07:00
2023-08-25 20:07:14 -07:00
void setPinConfigurationOverrides() { }
// this is supposed to be taken from chconf_common.h but it does not work? I am not sure why :(
// TODO: make this be defined by chconf_common.h?
2019-11-21 14:12:46 -08:00
//#if ! ENABLE_PERF_TRACE
void irqEnterHook() {}
void irqExitHook() {}
void contextSwitchHook() {}
void threadInitHook(void*) {}
void onLockHook() {}
void onUnlockHook() {}
2023-12-26 12:31:31 -08:00
//#endif /* ENABLE_PERF_TRACE */