ssh
to the boot partition of the micro SD card, this enables ssh communication with the Pi.pi
, password is raspberry
, and hostname is raspberrypi
.sudo raspi-config
and change password and timezone. Perhaps also run an update.sudo raspi-config
and enable SPI/boot/config.txt
:dtoverlay=mcp2515-can0,oscillator=16000000,interrupt=25 dtoverlay=spi-bcm2835-overlay
/etc/network/interfaces
for CAN to automatically start at boot with bitrate 125kbps(used by Torqeedo Interface Card):auto can0 iface can0 inet manual pre-up /sbin/ip link set can0 type can bitrate 125000 up /sbin/ifconfig can0 up down /sbin/ifconfig can0 down
dialout
group
sudo usermod -a -G dialout $USER
tty
group.
sudo usermod -a -G tty $USER