-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- bump calypso - fix calypso iroh - fix docker ruamel from #127 embedded - add qmicli to prep for #155 - add can bus util and remove can data rate
- Loading branch information
Showing
6 changed files
with
45 additions
and
10 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
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
29 changes: 29 additions & 0 deletions
29
odysseus_tree/overlays/rootfs_overlay_iroh/etc/init.d/S76calypso
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,29 @@ | ||
#!/bin/sh | ||
|
||
PIDFILE=/var/run/calypso.pid | ||
EXECUTABLE=/usr/bin/calypso | ||
INTERFACE_NAME=can0 | ||
BROKER_IP=192.168.100.1:1883 | ||
|
||
case "$1" in | ||
start) | ||
echo "Sleeping, waiting to start" | ||
sleep 20s | ||
echo "Starting calypso..." | ||
# start (S) executable (x) in background (b), make pid file (m) at p | ||
start-stop-daemon -S -x "$EXECUTABLE" -b -m -p "$PIDFILE" -- mqtt $BROKER_IP $INTERFACE_NAME skip_can_configure | ||
;; | ||
stop) | ||
echo "Stopping calypso..." | ||
# stop (K) and remove pidfile | ||
start-stop-daemon -K -p "$PIDFILE" | ||
rm "$PIDFILE" | ||
;; | ||
restart|reload) | ||
"$0" stop | ||
"$0" start | ||
;; | ||
*) | ||
echo "Usage: {start|stop|restart/reload}" | ||
exit 1 | ||
esac |
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
15 changes: 10 additions & 5 deletions
15
odysseus_tree/sources/tpu_telemetry/telemetry/poll_data/can.py
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