The DCDC boards receives messages over UART and microUSB. It sends out the messaages *just* over UART. The UART Baud rate is 57600.
For a controlled communication, please use the perl script *./dcdc.pl*.
+
+If the command is supposed to switch the Switch (Loopback without jumper) then the dcdc.pl fails by checking the length because the answer can't copme back. For now, change the lince in the script (line 179: to "$num=1;").
#define SHIFT_EN_OUTPUT() PORTF &= ~(1<<PF0)
#define SHIFT_DIS_OUTPUT() PORTF |= (1<<PF0)
-#define SEL_ON() PORTC &= ~(1<<PC6)
-#define SEL_OFF() PORTC |= (1<<PC6)
+#define SEL_ON() PORTC |= (1<<PC6)
+#define SEL_OFF() PORTC &= ~(1<<PC6)
#define ISMYADDR() (rxbuf[1] == '0' && (rxbuf[2] == '0' )) //|| rxbuf[2] == '1' || rxbuf[2] == '2' || rxbuf[2] == '3') )