Actions

Difference between revisions of "Voron Configuration"

From Just in Time

m (Adding steps performed so far)
m (Add link and steps performed so far)
Line 5: Line 5:
 
* Some experiences and designs in a github repo [https://github.com/cruiten/Voron-Related/tree/main/CANbus/Documentation here].
 
* Some experiences and designs in a github repo [https://github.com/cruiten/Voron-Related/tree/main/CANbus/Documentation here].
 
* Mellow [https://mellow.klipper.cn/#/board/fly_sb2040/ SB2040 documentation].
 
* Mellow [https://mellow.klipper.cn/#/board/fly_sb2040/ SB2040 documentation].
 +
* [https://www.reddit.com/r/VORONDesign/comments/11j6hym/help_setting_up_canbus_sb2040_utoc3_octopus_11/ reddit thread] with useful links.
  
  
Line 18: Line 19:
  
 
<blockquote><code>sudo wget <nowiki>https://cdn.mellow.klipper.cn/shell/can-enable</nowiki> -O /usr/bin/can-enable > /dev/null 2>&1 && sudo chmod +x /usr/bin/can-enable || echo "The operation failed"</code></blockquote>
 
<blockquote><code>sudo wget <nowiki>https://cdn.mellow.klipper.cn/shell/can-enable</nowiki> -O /usr/bin/can-enable > /dev/null 2>&1 && sudo chmod +x /usr/bin/can-enable || echo "The operation failed"</code></blockquote>
 +
<code>sudo sed -i '/^exit\ 0$/i \can-enable -d can0 -b 500000 -t 1024' /etc/rc.local</code>

Revision as of 22:35, 30 April 2023

CAN Bus upgrade


Steps performed:

sudo /bin/sh -c "cat > /etc/network/interfaces.d/can0" << EOF
allow-hotplug can0
iface can0 can static
    bitrate 500000
    up ifconfig \$IFACE txqueuelen 1024
EOF


sudo wget https://cdn.mellow.klipper.cn/shell/can-enable -O /usr/bin/can-enable > /dev/null 2>&1 && sudo chmod +x /usr/bin/can-enable || echo "The operation failed"

sudo sed -i '/^exit\ 0$/i \can-enable -d can0 -b 500000 -t 1024' /etc/rc.local