mezzato / simple-modbus

Automatically exported from code.google.com/p/simple-modbus
0 stars 0 forks source link

Arduino Micro usb serial not working #24

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

Arduino Micro usb serial does not work like this.
Serial1 works but serial ower USB not working.

tested with arduino slave library v8 and Mach3 CNC software in computer.

Original issue reported on code.google.com by lii...@gmail.com on 15 Dec 2013 at 4:04

GoogleCodeExporter commented 8 years ago
This is correct. The Serial object on the Micro is totally different than the 
Serial1 object. That's part of the core, can't be blamed for that. You can 
still change the library by removing all instances of HardwareSerial and just 
put Serial.***

Have a look at Input and output section at 
http://arduino.cc/en/Main/ArduinoBoardMicro

Original comment by bester.j...@gmail.com on 18 Dec 2013 at 2:25