PaulStoffregen
Well-known member
Opps, there's a bug on line 107 in usb_serial.h. Looks at it now, I'm honestly not sure how this ever worked.
Change this:
to this:
Change this:
Code:
#else // F_CPU < 20 MHz && !(USB_SERIAL || USB_SERIAL_HID)
to this:
Code:
#elif (F_CPU < 20000000) && (defined(USB_SERIAL) || defined(USB_SERIAL_HID))