mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-03-03 08:03:55 +08:00
33 lines
589 B
C
33 lines
589 B
C
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_clock_source_mode(uint8_t mode) {
|
|
UNUSED(mode);
|
|
}
|
|
|
|
void unused_set_siren(bool enabled) {
|
|
UNUSED(enabled);
|
|
}
|
|
|
|
uint32_t unused_read_current(void) {
|
|
return 0U;
|
|
}
|
|
|
|
void unused_board_tick(bool ignition, bool usb_enum, bool heartbeat_seen) {
|
|
UNUSED(ignition);
|
|
UNUSED(usb_enum);
|
|
UNUSED(heartbeat_seen);
|
|
} |