Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE committed Apr 16, 2024
1 parent d835648 commit aeb5b92
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ namespace behaviour_tree::node::custom::condition
int angles_between_count = 0;
for (auto &measure : car_system->getDeviceManager()->getLidarDevice()->getScanData())
{
spdlog::info("{} : {}", measure.angle, measure.distance);
if (measure.angle > this->getMinAngle() && measure.angle < this->getMaxAngle())
{
total_distance += measure.distance;
Expand Down
2 changes: 1 addition & 1 deletion app/rpi/daemon/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sudo systemctl start rpi_daemon # Start the new Daemon
```

Or use the single command:
```bash.sh
```bash
sudo chmod +x ./install_script.sh && systemctl stop rpi_daemon && sudo ./install_script.sh install && sudo systemctl daemon-reload && sudo systemctl start rpi_daemon
```

Expand Down
2 changes: 1 addition & 1 deletion app/rpi/tui/settings/config.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"host": "127.0.0.1:3000",
"host": "",
"lidar_port": "",
"behaviour_tree_update_ms_interval": 1000
}

0 comments on commit aeb5b92

Please sign in to comment.