-
Notifications
You must be signed in to change notification settings - Fork 18
Hashed heartbeats #230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Hashed heartbeats #230
Conversation
Added task creation for sending version information.
Added a new task to send version information with the current git hash.
Added sendVersion function to send the git hash.
Added a new task to send version information with the git hash.
Added task creation for sending version information.
LelsersLasers
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing main
Removed task creation for sendVersion function.
Added task creation for sendVersion function.
Removed task creation and sendVersion function from bootloader.
Removed commented-out task creation for sendVersion.
Added task creation for sendVersion function.
Removed commented lines related to sendVersion task creation.
source/torque_vector/main.c
Outdated
| taskCreateBackground(canTxUpdate); | ||
| taskCreateBackground(canRxUpdate); | ||
|
|
||
| taskCreate(sendVersion, 5000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also use the macro here
source/pdu/main.c
Outdated
| taskCreate(checkSwitchFaults, 100); | ||
| taskCreate(send_flowrates, 200); | ||
| schedStart(); | ||
| taskCreate(sendVersion, 5000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also use the macro here
source/daq/main.c
Outdated
|
|
||
| osKernelStart(); | ||
|
|
||
| taskCreate(sendVersion, PERIOD_MILLISECONDS_DAQ_VERSION); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this wont work because daq runs on freertos
No description provided.