2025-03-08 09:09:31 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-11-17 23:53:40 +00:00
|
|
|
void unused_init_bootloader(void) {
|
2023-09-27 15:45:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void unused_set_ir_power(uint8_t percentage) {
|
|
|
|
UNUSED(percentage);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unused_set_fan_enabled(bool enabled) {
|
|
|
|
UNUSED(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unused_set_siren(bool enabled) {
|
|
|
|
UNUSED(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t unused_read_current(void) {
|
|
|
|
return 0U;
|
|
|
|
}
|
|
|
|
|
2023-11-17 23:53:40 +00:00
|
|
|
void unused_set_bootkick(BootState state) {
|
|
|
|
UNUSED(state);
|
2023-09-27 15:45:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool unused_read_som_gpio(void) {
|
|
|
|
return false;
|
2025-03-08 09:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void unused_set_amp_enabled(bool enabled) {
|
|
|
|
UNUSED(enabled);
|
|
|
|
}
|