Skip to content

Commit

Permalink
Release 1.2 (#216)
Browse files Browse the repository at this point in the history
* Initial draft, with quite a few TODOs remaining

* Revise the README

This version of the readme is much shorter and simpler than my initial idea. The reason is, if someone is really interested in using or running our software, they need to be directed to the wiki anyways. Perhaps a later update could include build and run instructions, but any instructions we put here will need to be tested on machines other than the quad to ensure accuracy.

* Add I2C interface and GPS node

* Feature: basic safety manager (#176)

* Implement hello-world package safety_manager

* Create service interfaces for safety manager

* Add stubs for test client and server

* First draft of TestServer

* First draft of TestClient

* Add simple tests for TestClient and TestServer

* Create basic safety manager with dummy logging

* safety manager now logs some info about events

* simple tests for the safety manager

* Add watchdog schematic (#180)

* Add basic sidecar design notes

* Add schematic

* Automatic testing with GH Actions (#182)

* Add automatic testing workflow (version 1)

* Fix syntax error

* Skip packages and run on pushes

* Rosdep will now ignore errors

* Install colcon-common-extensions and vcstool

* Install colcon mixins, as in ROS dockerfile

* Removed troublesome packages

On doing a docker build, the mpc_controller and
test_trajectory_following packages were causing rosdep to throw
errors. After talking with Will, it seems we don't actually need
these packages, so they have been deleted.

* Use docker for build and test

* Don't run on pushes

* Remove *_nodes packages from testing

* Retest up to 8 times on failure

* Add sleep time to safety manager test

* Issues #17 and #18 (#179)

* added path_planner package, cubic spline implementation, and offset spline header

* - added library for splines
- added wrapper for position splines
- added lane center line->spline generation

* fix typo

* added points for lane boundaries

* fix compiler errors and some other stuff i forgot

* updated formatting + tests

* fix tests and add more comments

* Update license with GPL and add test function comment

Co-authored-by: Joshua Williams <[email protected]>

* Hotfix: actually poll messages & put them into a non-null buffer

* Fix build error with symlink_install and object libs (#203)

* Add lio-sam and ring channel emulation

* Working initially

* Finish mapping tweaks, working in sim

* Create "hubble"  localization package

* Add saveMap servicewa

* Update GPS node to use Odom msg

* Add data_collection.launch.py

* Add grid_divider, update GPS node

* Add gomentum pcds, grid_divider script

* Add grid_divider, update hubble, gps
- grid_divider is script to divide AND FILTER a big PCD map
- Hubble now uses python, will move back to C++ later
- Fix seg fault in GPS (thanks to Avery)

* Remove maps using .gitignore

* Remove useless script

* Add to mapping nodes

* Switch from IMU integration to ZED odom

* Add mapping GPS debug

* Finish basic mapping with lio_sam. Needs filtering

* Add map loader

* Add lanelet visualization

* Cleanup, add deviation_report skeleton

* Remove buggy junk from Autoware

* Rename lio_sam, fix safety_manager static build

* Finish working prototype of icp_nudger

* Add maps for gomentum

* Add campus map cells; switch nudger to NDT

* Update robot_localization

* Change state_estiamtion to hubble. Docker works!

* Add robot localization

* Update route planner to new design (#206)

* trim autoware code

* Route planner logic and basic testing

* Node and message update

* Cleanup and docs

* Disable linter on lanetlet2_global_planner

Co-authored-by: Joshua Williams <[email protected]>

Thank you @EganJ !

* Disable linting in all packages

Co-authored-by: Avery Bainbridge <[email protected]>
Co-authored-by: Will Heitman <[email protected]>
Co-authored-by: Avery <[email protected]>
Co-authored-by: Jim <[email protected]>
Co-authored-by: Egan <[email protected]>
  • Loading branch information
6 people authored Jan 24, 2022
1 parent 57e3c7e commit f87825d
Show file tree
Hide file tree
Showing 3,035 changed files with 10,865,322 additions and 214,321 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data/*
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ __pycache__
build
install
log
.vscode
.vscode
11 changes: 11 additions & 0 deletions 0_0.pcd
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# .PCD v0.7 - Point Cloud Data file format
VERSION 0.7
FIELDS x y z intensity
SIZE 4 4 4 4
TYPE F F F F
COUNT 1 1 1 1
WIDTH 0
HEIGHT 1
VIEWPOINT 0 0 0 1 0 0 0
POINTS 0
DATA ascii
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ RUN /tmp/rosdep.sh && rm -rf /var/lib/apt/lists/*
WORKDIR $OVERLAY_WS

COPY src/ src/
RUN apt update && rosdep update && rosdep install -y --from-paths src --ignore-src

# Install using rosdep. NOTE: Rosdep's -r will continue despite errors.
RUN apt update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:borglab/gtsam-release-4.0 && \
apt install -y libgtsam-dev libgtsam-unstable-dev && \
rosdep update && rosdep install -y -r --from-paths src --ignore-src
RUN apt update && apt install ros-foxy-lgsvl-bridge
# install overlay dependencies

Expand Down
678 changes: 678 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

67,366 changes: 0 additions & 67,366 deletions data/maps/borregas/borregas.pcd

This file was deleted.

7 changes: 0 additions & 7 deletions data/maps/borregas/borregas.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions data/maps/borregas/lanelet_server.param.yaml

This file was deleted.

21 changes: 0 additions & 21 deletions data/maps/borregas/pcd_publisher.param.yaml

This file was deleted.

Loading

0 comments on commit f87825d

Please sign in to comment.