-
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.
Sending messages from VC properly without proper filtering (#1284)
### Changelist telem files and seperation of can files in tasks ### Testing Done tested on hardware ### Resolved Tickets n/a --------- Co-authored-by: larakawasme <[email protected]> Co-authored-by: Edwin <[email protected]>
- Loading branch information
1 parent
6de086e
commit 329f7a7
Showing
35 changed files
with
806 additions
and
323 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Tracksight Message | ||
|
||
syntax = "proto3"; | ||
|
||
message TelemMessage { | ||
int32 can_id = 1; | ||
int32 message_0 = 2; | ||
int32 message_1 = 3; | ||
int32 message_2 = 4; | ||
int32 message_3 = 5; | ||
int32 message_4 = 6; | ||
int32 message_5 = 7; | ||
int32 message_6 = 8; | ||
int32 message_7 = 9; | ||
int32 time_stamp = 10; | ||
} |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
// Tracksight Message | ||
|
||
syntax = "proto3"; | ||
import "nanopb.proto"; | ||
|
||
message TelemMessage { | ||
int32 can_id = 1; | ||
repeated int32 message = 2 [(nanopb).max_count = 8]; | ||
int32 time_stamp = 3; | ||
int32 message_0 = 2; | ||
int32 message_1 = 3; | ||
int32 message_2 = 4; | ||
int32 message_3 = 5; | ||
int32 message_4 = 6; | ||
int32 message_5 = 7; | ||
int32 message_6 = 8; | ||
int32 message_7 = 9; | ||
int32 time_stamp = 10; | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
43ef53a33ef962205a8b320f5fbc6ded | ||
b3531f304282bafc01eb3f14081ed474 |
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.