]> jspc29.x-matter.uni-frankfurt.de Git - avr.git/commitdiff
fix answer mechanism for DCDC converter
authorAdrian Weber <adrian.a.weber@physik.uni-giessen.de>
Thu, 20 Feb 2020 15:11:43 +0000 (16:11 +0100)
committerAdrian Weber <adrian.a.weber@physik.uni-giessen.de>
Thu, 20 Feb 2020 15:11:43 +0000 (16:11 +0100)
atmega32u4/dcdc_rich/Makefile
atmega32u4/dcdc_rich/main.c

index c5b29c273ddd2bedb2e1f412b754bf8fd3cf80c8..8ee15d8e478792db3690c7530b435e6ecf90b497 100644 (file)
@@ -11,7 +11,7 @@ TARGET = main
 SRC = $(TARGET).c usb_serial.c 
 ASRC = 
 OPT = 2
-PORT=/dev/ttyACM1
+PORT=/dev/ttyACM0
 
 # Name of this Makefile (used for "make depend").
 MAKEFILE = Makefile
index 91d3b4bb0dd619d10b9030640842e633e69b0ff3..321a9334906d536665cfd6a8845fad84311430ee 100644 (file)
@@ -87,7 +87,7 @@ void forward_msg(uint8_t i) {
 
 uint8_t is_my_address(uint8_t s) {
   if (ISMYADDR()) {
-    rxbuf[2] -= '0'; // write number to buffer, instead of ascii.
+    //rxbuf[2] -= '0'; // write number to buffer, instead of ascii.
     return 1;
   } else {
     forward_msg(s);