-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C++20/23 Support, Add New Teleoperation Folder (#538)
* Initial ansible files * Add more files, try networking * Copy over catkin profiles * Keep working on ansbile * Add macos files and other things * Add temp test script * Add bootstrap file * Add ros apt * Add ros key * Update * Install ros deps * Bash scripting * Minor * Perms * Oh my zsh :o * Missing var * Branch * Change name * Become * Perms * Perms * Add fzf * Networking * Keep going * Keep going * Add jetson stats * Add color * Add ansible script * Install jetson stats as root * Cleanup * C++23 support, use pch for perception, teleoperation vue and django project * remove old * Fix mypy warnings * use clang++12 as cuda host compiler * lto, add clang-12 to jetson ansible * minor change * Move clang-12 to percep dev * ignore .cache for clangd, symlink clangd so vscode recognizes it, silence cmake dev warnings, add bun to zshrc --------- Co-authored-by: umroverPerception <[email protected]>
- Loading branch information
1 parent
60d7a91
commit f80c745
Showing
68 changed files
with
1,487 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,6 @@ moteus-cal* | |
|
||
# Virtual Environment | ||
/venv/ | ||
|
||
# clangd Output | ||
.cache/ |
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
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -5,8 +5,6 @@ | |
ubuntu_release: focal | ||
roles: | ||
- jetson_dev | ||
- build | ||
- dev | ||
- jetson_networks | ||
- jetson_services | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
#pragma once | ||
|
||
#include <cstdint> | ||
|
||
#include <sensor_msgs/point_cloud2_iterator.h> | ||
|
||
namespace mrover { | ||
|
||
/** | ||
|
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,36 @@ | ||
#pragma once | ||
|
||
#include <algorithm> | ||
#include <cassert> | ||
#include <cmath> | ||
#include <cstdint> | ||
#include <execution> | ||
#include <limits> | ||
#include <numeric> | ||
#include <optional> | ||
#include <string> | ||
#include <type_traits> | ||
#include <unordered_map> | ||
|
||
#include <boost_cpp23_workaround.hpp> | ||
|
||
#include <opencv2/aruco.hpp> | ||
#include <opencv2/core/mat.hpp> | ||
#include <opencv2/imgproc.hpp> | ||
|
||
#include <dynamic_reconfigure/server.h> | ||
#include <image_transport/image_transport.h> | ||
#include <nodelet/loader.h> | ||
#include <nodelet/nodelet.h> | ||
#include <sensor_msgs/PointCloud2.h> | ||
#include <sensor_msgs/image_encodings.h> | ||
#include <sensor_msgs/point_cloud2_iterator.h> | ||
#include <std_srvs/SetBool.h> | ||
#include <tf/exceptions.h> | ||
#include <tf2_ros/transform_broadcaster.h> | ||
#include <tf2_ros/transform_listener.h> | ||
|
||
#include <mrover/DetectorParamsConfig.h> | ||
|
||
#include <loop_profiler.hpp> | ||
#include <se3.hpp> |
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.