Skip to content

Commit

Permalink
add stop function
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlombardo committed Feb 13, 2024
1 parent ad90886 commit 56e6ec0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions MSB/api/msb_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

void start_msb();

void stop_msb();

#endif
4 changes: 3 additions & 1 deletion MSB/msb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ osThreadId_t canTaskHandle;

void init_msb() {
// spawn CAN output thread
// canTaskHandle = osThreadNew(start_can_publisher, NULL, NULL);
start_can_publisher();
}

Expand All @@ -21,3 +20,6 @@ void start_msb() {

}

void stop_msb() {

}

0 comments on commit 56e6ec0

Please sign in to comment.