Search found 1 match
- Sat Aug 29, 2015 2:18 am
- Forum: V-USB
- Topic: VUSB + Ardunio Problem
- Replies: 1
- Views: 33239
VUSB + Ardunio Problem
Here's the useful part of my code: #include "usbdrv.h" void setup() { TIMSK0 &= !(1<TOIE0); cli(); usbDeviceDisconnect(); /* enforce re-enumeration, do this while interrupts are disabled! */ usbDeviceConnect(); usbInit(); sei(); } void loop() { usbPoll(); } } I'm able to send data back...