Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMartensson committed Apr 27, 2024
1 parent 137fe16 commit 4db4032
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Src/Examples/Open SAE J1939/CAN Traffic.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ void Callback_Function_Traffic(uint32_t ID, uint8_t DLC, uint8_t data[], bool is
printf("\n");
}

void Callback_Function_Delay(uint8_t uint8)
{
/* Apply your delay here */
/* Apply your delay here */
void Callback_Function_Delay(uint8_t delay){
/* Place your hardware delay here e.g HAL_Delay(delay); for STM32 */
}

int main() {
Expand Down
6 changes: 3 additions & 3 deletions Src/Examples/Open SAE J1939/Internal callback.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ void Callback_Function_Read(uint32_t* ID, uint8_t data[], bool* is_new_data) {
*is_new_data = true;
}

void Callback_Function_Delay(uint8_t uint8)
{
/* Apply your delay here */
/* Apply your delay here */
void Callback_Function_Delay(uint8_t delay){
/* Place your hardware delay here e.g HAL_Delay(delay); for STM32 */
}

int main() {
Expand Down
6 changes: 3 additions & 3 deletions Src/Examples/Open SAE J1939/Main.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ void Callback_Function_Traffic(uint32_t ID, uint8_t DLC, uint8_t data[], bool is
printf("\n");
}

void Callback_Function_Delay(uint8_t uint8)
{
/* Apply your delay here */
/* Apply your delay here */
void Callback_Function_Delay(uint8_t delay){
/* Place your hardware delay here e.g HAL_Delay(delay); for STM32 */
}

int main() {
Expand Down

0 comments on commit 4db4032

Please sign in to comment.