-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from MO-RISE/msg/config-msg
MCAP recorder updated with query to storage
- Loading branch information
Showing
14 changed files
with
116 additions
and
174 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 +1,17 @@ | ||
# Messages | ||
|
||
TODO... | ||
In the folder messages are the defections for subjects and messages | ||
|
||
## Add or Edit Message payloads | ||
|
||
Each message is wrapped in an [Envelope](./Envelope.proto) with include the payload message and all the payloads are located in the [payloads folder](./payloads/). Each payload is an protobuf definition as the file type .proto | ||
|
||
Messages are divided into the following packages: | ||
- foxglove ([Foxglove formatdefintion](https://github.com/foxglove/schemas/tree/main/schemas/proto/foxglove)) | ||
|
||
Foxglove messages should be avoided to modify and if really | ||
|
||
### To add | ||
|
||
1) Just create a new proto file and name it descriptively in CamelCase. | ||
2) |
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,60 @@ | ||
syntax = "proto3"; | ||
|
||
import "google/protobuf/timestamp.proto"; | ||
import "LocationFix.proto"; | ||
import "Pose.proto"; | ||
|
||
package keelson.experimental; | ||
|
||
// Configuration state descirbtion all is optional | ||
message ConfigurationSensorPerception { | ||
|
||
// Type of preseption sensor | ||
enum SensorType { | ||
UNKNOWN = 0; | ||
CAMERA = 1; | ||
LIDAR = 2; | ||
RADAR_MARINE = 3; | ||
RADAR_VEHICLE = 4; | ||
} | ||
|
||
// Timestamp of the message when it was created | ||
google.protobuf.Timestamp timestamp = 1; | ||
|
||
// Geografical location that shuch be static | ||
foxglove.LocationFix location = 2; | ||
|
||
// Sensor pose relative to the platfrom shuch be static | ||
foxglove.Pose pose = 3; | ||
|
||
// View fild of snsor in horizontal | ||
float view_horizontal_angel_deg = 4; | ||
|
||
// View fild starting point azimuth in horizontal | ||
float view_horizontal_start_angel_deg = 5; | ||
|
||
// View fild end point azimuth in horizontal | ||
float view_horizontal_end_angel_deg = 6; | ||
|
||
// View fild of snsor in vertical | ||
float view_vertical_angel_deg = 7; | ||
|
||
// Mode of the sensor | ||
string mode = 8; | ||
|
||
// Operation mode of the sensor (RUNNING, STANDBY, OFF) | ||
enum mode_operating { | ||
RUNNING = 0; | ||
STANDBY = 1; | ||
DISABLED = 2; | ||
OFF = 3; | ||
ERROR = 4; | ||
} | ||
|
||
string mode_timestamp = 9; | ||
|
||
string other_json = 99; | ||
|
||
} | ||
|
||
|
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
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