-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* set ROS hostname to localhost (#15) Thanks @P4nos This makes sense for single machine configuration for local network setup. The roscore should initialise correctly with this fix. * Added offset in VI Control Loop Changes made Added offset in VI control loop to fix bug18 Updated some comments in VI Fixed gps_imu param name * Feature/17 redesign full stack with best practices guidelines (#21) * Code Redesigned * Bring branch up-to-date * Fix VI conflict * Update submodule to latest commit Co-authored-by: EfimiaPanagiotaki-StreetDrone <efimia@streetdrone.com> Co-authored-by: P4nos <P4nos@users.noreply.github.com> Co-authored-by: Fionan-StreetDrone <fionan@streetdrone.com> Co-authored-by: AbdelrahmanBarghouth-StreetDrone <58561901+AbdelrahmanBarghouth-StreetDrone@users.noreply.github.com> Co-authored-by: EfimiaPanagiotaki-StreetDrone <efimia@streetdrone.com>
- Loading branch information
1 parent
2f87cd3
commit cdc43bd
Showing
23 changed files
with
544 additions
and
278 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
Submodule autoware.ai
updated
110 files
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
41 changes: 41 additions & 0 deletions
41
src/supervisor/check_message_alive/include/error_listener.h
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,41 @@ | ||
/* | ||
* Copyright (C) 2020 Project ASLAN - All rights reserved | ||
* | ||
* Author: Abdelrahman Barghouth | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* * Redistributions of source code must retain the above copyright notice, | ||
* this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* * Neither the name of the copyright holder nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
*/ | ||
|
||
|
||
#include <ros/ros.h> | ||
#include <diagnostic_msgs/DiagnosticArray.h> | ||
#include <diagnostic_msgs/DiagnosticStatus.h> | ||
|
||
class error_listener | ||
{ | ||
public: | ||
void diagnostics_callback(const diagnostic_msgs::DiagnosticArray::ConstPtr& msg); | ||
int RUN(int argc, char **argv); | ||
}; |
Oops, something went wrong.