This file contains hidden or 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
#include "motor.h" | |
#include "sockets.h" | |
#include "proto/thruster_command.pb.h" | |
#include "pb.h" | |
#include "pb_common.h" | |
#include "pb_decode.h" | |
#include "pb_encode.h" | |
#include "udp.h" | |
void StartDefaultTask(void const * argument) |
This file contains hidden or 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
repositories: | |
control/joy_to_twist: | |
type: git | |
url: https://github.com/OUXT-Polaris/joy_to_twist.git | |
version: master | |
control/usv_controller: | |
type: git | |
url: https://github.com/OUXT-Polaris/usv_controller.git | |
version: master | |
description/miniv_description: |
This file contains hidden or 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
ScenarioModifiers: | |
ScenarioModifier: [] | |
OpenSCENARIO: | |
FileHeader: | |
revMajor: 1 | |
revMinor: 0 | |
date: '2020-10-23T06:57:33.899Z' | |
description: Normal Driving at a constant speed with no vehicle in front | |
author: '' | |
ParameterDeclarations: |
This file contains hidden or 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
geographic_msgs::GeoPoint NmeaGpsPlugin::convertToGeoPose(double northing,double easting,int zone_id,double altitude) | |
{ | |
double K0 = 0.9996; | |
double E = 0.00669438; | |
double E2 = E*E; | |
double E3 = E2*E; | |
double E_P2 = E/(1.0-E); | |
double SQRT_E = std::sqrt(E); | |
double _E = (1 - SQRT_E) / (1 + SQRT_E); | |
double _E2 = _E*_E; |
This file contains hidden or 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
Starting >>> src | |
[Processing: src] | |
[Processing: src] | |
[Processing: src] | |
[Processing: src] | |
--- stderr: src | |
** WARNING ** io features related to openni2 will be disabled | |
** WARNING ** io features related to pcap will be disabled | |
** WARNING ** io features related to png will be disabled | |
** WARNING ** visualization features related to openni2 will be disabled |
This file contains hidden or 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
#!/usr/bin/env node | |
'use strict'; | |
class RostateMachineViewer | |
{ | |
constructor(package_dir,target_namespace) | |
{ | |
this.package_dir = package_dir; | |
this.target_namespace = target_namespace; | |
const http = require('http'); |
This file contains hidden or 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
sudo apt -y install cmake | |
cd external | |
wget https://github.com/Kitware/CMake/releases/download/v3.14.3/cmake-3.14.3-Linux-x86_64.tar.gz | |
tar -xvzf cmake-3.14.3-Linux-x86_64.tar.gz | |
# Install Nnabla | |
sudo apt -y install build-essential | |
sudo apt -y install python python-pip | |
sudo apt -y install libarchive-dev | |
sudo apt -y install libhdf5-dev | |
sudo add-apt-repository ppa:maarten-fonville/protobuf |
This file contains hidden or 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
if (CATKIN_ENABLE_TESTING) | |
find_package(rostest REQUIRED) | |
add_rostest_gtest(test_autoware_health_checker | |
test/test_autoware_health_checker.test | |
test/src/test_autoware_health_checker.cpp | |
${HEALTH_CHECKER_SRC}) | |
target_link_libraries(test_autoware_health_checker | |
${catkin_LIBRARIES}) | |
endif () |
This file contains hidden or 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
# usv_twist_sensor_plugin | |
add_library(usv_twist_sensor_plugin | |
src/usv_twist_sensor_plugin.cc | |
) | |
target_link_libraries(usv_twist_sensor_plugin | |
${catkin_LIBRARIES} | |
${GAZEBO_LIBRARIES} | |
${Eigen_LIBRARIES} | |
) | |
add_document(usv_twist_sensor_plugin) |
This file contains hidden or 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
vmrc/robotx_gazebo/CMakeFiles/robotx_gazebo_generate_messages_java_gradle.dir/build.make:63: ターゲット 'vmrc/robotx_gazebo/java/robotx_gazebo/build.gradle' のレシピで失敗しました | |
make[2]: *** [vmrc/robotx_gazebo/java/robotx_gazebo/build.gradle] エラー 1 | |
CMakeFiles/Makefile2:4866: ターゲット 'vmrc/robotx_gazebo/CMakeFiles/robotx_gazebo_generate_messages_java_gradle.dir/all' のレシピで失敗しました | |
make[1]: *** [vmrc/robotx_gazebo/CMakeFiles/robotx_gazebo_generate_messages_java_gradle.dir/all] エラー 2 | |
make[1]: *** 未完了のジョブを待っています.... |