-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPage.cpp
More file actions
31 lines (25 loc) · 1.45 KB
/
Page.cpp
File metadata and controls
31 lines (25 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "Page.h"
// All methods have default no-op implementations
void Page::open() { }
bool Page::shouldDisplay() { return true; }
void Page::screen(String& top, String& bottom) { }
void Page::act(Action_T action) { }
void Page::close() { }
void Page::process_FrontCanNode_DriverOutput(Can_FrontCanNode_DriverOutput_T *msg) { }
void Page::process_FrontCanNode_RawValues(Can_FrontCanNode_RawValues_T *msg) { }
void Page::process_FrontCanNode_WheelSpeed(Can_FrontCanNode_WheelSpeed_T *msg) { }
void Page::process_RearCanNode_WheelSpeed(Can_RearCanNode_WheelSpeed_T *msg) { }
void Page::process_Vcu_BmsHeartbeat(Can_Vcu_BmsHeartbeat_T *msg) { }
void Page::process_Vcu_DashHeartbeat(Can_Vcu_DashHeartbeat_T *msg) { }
void Page::process_Bms_Heartbeat(Can_Bms_Heartbeat_T *msg) { }
void Page::process_Bms_CellTemps(Can_Bms_CellTemps_T *msg) { }
void Page::process_Bms_PackStatus(Can_Bms_PackStatus_T *msg) { }
void Page::process_Bms_Error(Can_Bms_Error_T *msg) { }
void Page::process_MC_DataReading(Can_MC_DataReading_T *msg) { }
// TODO
// void Page::process_MC_ErrorAndWarning(Can_MC_ErrorAndWarning_T *msg) { }
// void Page::process_MC_State(Can_MC_State_T *msg) { }
void Page::process_CurrentSensor_Power(Can_CurrentSensor_Power_T *msg) { }
void Page::process_CurrentSensor_Voltage(Can_CurrentSensor_Voltage_T *msg) { }
void Page::process_CurrentSensor_Current(Can_CurrentSensor_Current_T *msg) { }
void Page::process_CurrentSensor_Energy(Can_CurrentSensor_Energy_T *msg) { }