Initial commit of files

This commit is contained in:
2021-01-22 10:16:20 -05:00
parent 32d165ec8f
commit ed92211680
534 changed files with 68563 additions and 19 deletions

12
bin-scripts/can-log-stop Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
# log file name based on time
PIDDIR=.
PIDFILE=$PIDDIR/can-log.pid
# kill if already running (restart)
if [ -f $PIDFILE ]; then
pkill -F $PIDFILE
echo "CANdump logging stopped"
rm -f $PIDFILE
fi