-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release/k900 for 4.4.0 release (#205)
<!-- Thanks for the contribution, this is awesome. --> This PR is to merge release branch into master for release process of k900 # PR Details ## Description <!--- Describe your changes in detail --> ## Related Issue <!--- This project only accepts pull requests related to open issues --> <!--- If suggesting a new feature or change, please discuss it in an issue first --> <!--- If fixing a bug, there should be an issue describing it with steps to reproduce --> <!--- Please DO NOT name partially fixed issues, instead open an issue specific to this fix --> <!--- Please link to the issue here: --> ## Motivation and Context <!--- Why is this change required? What problem does it solve? --> ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Defect fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that cause existing functionality to change) ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I have added any new packages to the sonar-scanner.properties file - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have read the [**CONTRIBUTING**](https://github.com/usdot-fhwa-stol/carma-platform/blob/develop/Contributing.md) document. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed.
- Loading branch information
Showing
36 changed files
with
315 additions
and
95 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Docker build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "develop" | ||
- "master" | ||
- "release/*" | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
docker: | ||
uses: usdot-fhwa-stol/actions/.github/workflows/docker.yml@main |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ on: | |
branches: | ||
- "develop" | ||
- "master" | ||
- "release/*" | ||
|
||
jobs: | ||
dockerhub: | ||
|
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,21 @@ | ||
# | ||
# GetEmergencyRoute.srv | ||
# | ||
# Provided by the EmergencyResponseVehicle node. Call the service to receive the name of | ||
# the node's current emergency route, if it was successfully loaded. | ||
# Responds with success boolean and name of loaded route. | ||
# | ||
# @author Alex Frye | ||
# @version 0.1 | ||
# | ||
|
||
# Request - No arguments | ||
|
||
--- | ||
# Response | ||
|
||
# Success boolean | ||
bool is_successful | ||
|
||
# Name of route selected | ||
string route_name |
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,10 @@ | ||
# EmergencyVehicleAck.msg | ||
|
||
# This message is used by an emergency vehicle to acknowledge receipt of an | ||
# EmergencyVehicleResponse message from a carma-equipped vehicle | ||
|
||
# standard header for all mobility messages | ||
carma_v2x_msgs/MobilityHeader m_header | ||
|
||
# True when the emergency vehicle has received the EmergencyVehicleResponse message. Currently this should never be false | ||
bool acknowledgement |
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,23 @@ | ||
# | ||
# VehicleMass.msg | ||
# | ||
# Modified J2735 2016 message format, adjusted to use base SI units (m,s, etc) in most case. | ||
# | ||
|
||
# VehicleMass ::= INTEGER (0..255) | ||
# -- Values 000 to 080 in steps of 50kg | ||
# -- Values 081 to 200 in steps of 500kg | ||
# -- Values 201 to 253 in steps of 2000kg | ||
# -- The Value 254 shall be used for weights above 170000 kg | ||
# -- The Value 255 shall be used when the value is unknown or unavailable | ||
# -- Encoded such that the values: | ||
# -- 81 represents 4500 kg | ||
# -- 181 represents 54500 kg | ||
# -- 253 represents 170000 kg | ||
uint32 vehicle_mass | ||
|
||
uint32 MASS_MIN=0 | ||
uint32 MASS_MAX=170000 | ||
|
||
# If true the vehicle mass is unset | ||
bool unavailable |
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,10 @@ | ||
# EmergencyVehicleAck.msg | ||
|
||
# This message is used by an emergency vehicle to acknowledge receipt of an | ||
# EmergencyVehicleResponse message from a carma-equipped vehicle | ||
|
||
# standard header for all mobility messages | ||
cav_msgs/MobilityHeader m_header | ||
|
||
# True when the emergency vehicle has received the EmergencyVehicleResponse message. Currently this should never be false | ||
bool acknowledgement |
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,23 @@ | ||
# | ||
# VehicleMass.msg | ||
# | ||
# Modified J2735 2016 message format, adjusted to use base SI units (m,s, etc) in most case. | ||
# | ||
|
||
# VehicleMass ::= INTEGER (0..255) | ||
# -- Values 000 to 080 in steps of 50kg | ||
# -- Values 081 to 200 in steps of 500kg | ||
# -- Values 201 to 253 in steps of 2000kg | ||
# -- The Value 254 shall be used for weights above 170000 kg | ||
# -- The Value 255 shall be used when the value is unknown or unavailable | ||
# -- Encoded such that the values: | ||
# -- 81 represents 4500 kg | ||
# -- 181 represents 54500 kg | ||
# -- 253 represents 170000 kg | ||
uint32 vehicle_mass | ||
|
||
uint32 MASS_MIN=0 | ||
uint32 MASS_MAX=170000 | ||
|
||
# If true the vehicle mass is unset | ||
bool unavailable |
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,21 @@ | ||
# | ||
# GetEmergencyRoute.srv | ||
# | ||
# Provided by the EmergencyResponseVehicle node. Call the service to receive the name of | ||
# the node's current emergency route, if it was successfully loaded. | ||
# Responds with success boolean and name of loaded route. | ||
# | ||
# @author Alex Frye | ||
# @version 0.1 | ||
# | ||
|
||
# Request - No arguments | ||
|
||
--- | ||
# Response | ||
|
||
# Success boolean | ||
bool is_successful | ||
|
||
# Name of route selected | ||
string route_name |
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 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
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.