You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
640 B
35 lines
640 B
2 years ago
|
void unused_set_gps_mode(uint8_t mode) {
|
||
|
UNUSED(mode);
|
||
|
}
|
||
|
|
||
|
void unused_set_ir_power(uint8_t percentage) {
|
||
|
UNUSED(percentage);
|
||
|
}
|
||
|
|
||
|
void unused_set_fan_enabled(bool enabled) {
|
||
|
UNUSED(enabled);
|
||
|
}
|
||
|
|
||
|
void unused_set_phone_power(bool enabled) {
|
||
|
UNUSED(enabled);
|
||
|
}
|
||
|
|
||
|
void unused_set_siren(bool enabled) {
|
||
|
UNUSED(enabled);
|
||
|
}
|
||
|
|
||
|
uint32_t unused_read_current(void) {
|
||
|
return 0U;
|
||
|
}
|
||
|
|
||
|
bool unused_board_tick(bool ignition, bool usb_enum, bool heartbeat_seen, bool harness_inserted) {
|
||
|
UNUSED(ignition);
|
||
|
UNUSED(usb_enum);
|
||
|
UNUSED(heartbeat_seen);
|
||
|
UNUSED(harness_inserted);
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool unused_read_som_gpio(void) {
|
||
|
return false;
|
||
|
}
|