mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-06 12:00:13 +02:00
Make serial receiver compile
This commit is contained in:
parent
1524c73478
commit
083ec44d6f
2 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void receive_can_battery(CAN_frame rx_frame);
|
void receive_can_battery(CAN_frame rx_frame);
|
||||||
|
|
||||||
void update_values_battery();
|
void update_values_battery();
|
||||||
void send_can_battery();
|
void send_can_battery();
|
||||||
void setup_battery(void);
|
void setup_battery(void);
|
||||||
|
|
|
@ -221,7 +221,9 @@ void update_values_serial_link() {
|
||||||
void setup_battery(void) {
|
void setup_battery(void) {
|
||||||
Serial.println("SERIAL_DATA_LINK_RECEIVER selected");
|
Serial.println("SERIAL_DATA_LINK_RECEIVER selected");
|
||||||
}
|
}
|
||||||
|
// Needed to make the compiler happy
|
||||||
void update_values_battery() {}
|
void update_values_battery() {}
|
||||||
void send_can_battery() {}
|
void send_can_battery() {}
|
||||||
|
void receive_can_battery(CAN_frame rx_frame) {}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue