-
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.
Specify data capture times for SD card and wireless telem in JSONCAN (#…
…1273) ### Changelist <!-- Give a list of the changes covered in this PR. This will help both you and the reviewer keep this PR within scope. --> Add the ability to specify the data capture rate for both SD card logging and wireless telemetry. The schema is as follows: ```json "<msg name>": { <other signals omitted> "data_capture": { "log_cycle_time": 1000, "telem_cycle_time": 1000 } } ``` `log_cycle_time` is the cycle time at which the message will be logged to the SD card. If `null`, this message will not be logged. This signal can be omitted and the normal message cycle time will be used instead. `telem_cycle_time` is the cycle time at which the message will be transmitted via wireless telemetry. If `null`, this message will not be sent. This signal can be omitted and the normal message cycle time will be used instead. ### Testing Done <!-- Outline the testing that was done to demonstrate the changes are solid. This could be unit tests, integration tests, testing on the car, etc. Include relevant code snippets, screenshots, etc as needed. --> TODO
- Loading branch information
1 parent
15d1bd5
commit a62a19e
Showing
10 changed files
with
314 additions
and
103 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
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.