Skip to content

Commit

Permalink
compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MerinoSheep committed Feb 19, 2025
1 parent cef143c commit 8f53ac4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DIM/Src/tft.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ void drawRacingScreen(void){
*
*/
void drawErrorScreen(void) {
volatile cmr_canVSMStatus_t *canVSMStat getPayload(CANRX_VSM_STATUS);
volatile cmr_canVSMStatus_t *canVSMStatus = getPayload(CANRX_VSM_STATUS);

volatile cmr_canHVCHeartbeat_t *canHVCHeartbeat getPayload(CANRX_HVC_HEARTBEAT);
volatile cmr_canHVCHeartbeat_t *canHVCHeartbeat = getPayload(CANRX_HVC_HEARTBEAT);

volatile cmr_canAMKActualValues2_t *amkFLActualValues2 = getPayload(CANRX_AMK_FL_ACT_2);
volatile cmr_canAMKActualValues2_t *amkFRActualValues2 = getPayload(CANRX_AMK_FR_ACT_2);
Expand Down

0 comments on commit 8f53ac4

Please sign in to comment.