-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cmake-cleanup-2024
- Loading branch information
Showing
83 changed files
with
11,012 additions
and
1,461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include "app_shdnLoop.h" | ||
#include "app_shdnLoopNode.h" | ||
#include "io_bmsShdn.h" | ||
#include "app_canTx.h" | ||
|
||
static const BoardShdnNode ts_ilck_ok_node = { &io_bmsShdn_TS_ILCK_OK_get, &app_canTx_BMS_TSIlckOKStatus_set }; | ||
static const BoardShdnNode hvd_ok_node = { &io_bmsShdn_HVD_OK_get, &app_canTx_BMS_HVDShdnOKStatus_set }; | ||
|
||
void app_shdnLoop_broadcast(void) | ||
{ | ||
app_shdnLoopNode_broadcast(&ts_ilck_ok_node); | ||
app_shdnLoopNode_broadcast(&hvd_ok_node); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include "app_shdnLoop.h" | ||
#include "app_shdnLoopNode.h" | ||
#include "io_critShdn.h" | ||
#include "app_canTx.h" | ||
|
||
static const BoardShdnNode inertia_sen_node = { &io_critShdn_get_INERTIA_SEN_OK_get, | ||
&app_canTx_CRIT_InertiaSenOKStatus_set }; | ||
static const BoardShdnNode cockpit_estop_node = { &io_critShdn_COCKPIT_ESTOP_OK_get, | ||
&app_canTx_CRIT_CockpitEStopOKStatus_set }; | ||
|
||
void app_shdnLoop_broadcast(void) | ||
{ | ||
app_shdnLoopNode_broadcast(&inertia_sen_node); | ||
app_shdnLoopNode_broadcast(&cockpit_estop_node); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include "app_shdnLoop.h" | ||
#include "app_shdnLoopNode.h" | ||
#include "io_fsmShdn.h" | ||
#include "app_canTx.h" | ||
|
||
static const BoardShdnNode bots_node = { &io_fsmShdn_FSM_SHDN_OK_get, &app_canTx_FSM_BOTSOKStatus_set }; | ||
|
||
void app_shdnLoop_broadcast(void) | ||
{ | ||
app_shdnLoopNode_broadcast(&bots_node); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.