Make serial receiver compile

This commit is contained in:
Daniel Öster 2024-08-10 11:53:51 +03:00
parent 1524c73478
commit 083ec44d6f
2 changed files with 2 additions and 1 deletions

View file

@ -79,7 +79,6 @@
#endif
void receive_can_battery(CAN_frame rx_frame);
void update_values_battery();
void send_can_battery();
void setup_battery(void);

View file

@ -221,7 +221,9 @@ void update_values_serial_link() {
void setup_battery(void) {
Serial.println("SERIAL_DATA_LINK_RECEIVER selected");
}
// Needed to make the compiler happy
void update_values_battery() {}
void send_can_battery() {}
void receive_can_battery(CAN_frame rx_frame) {}
#endif