mcuee
mcuee
FYI libusb-1.0.25 has just been released today. Hopefully various Linux distro will be able to catch up soon. https://github.com/libusb/libusb/releases/tag/v1.0.25
I installed gcc-4.7 and it now complains about conio.h. mymacmini:LibusbTest xiaofanc$ g++-4.7 -I../headers LibusbTest.cpp -o LibusbTestIn file included from /usr/local/Cellar/gcc/4.7.1/gcc/lib/gcc/x86_64-apple-darwin11.4.0/4.7.1/../../../../include/c++/4.7.1/chrono:35:0, from ../headers/Transfer.h:4, from ../headers/Endpoint.h:7, from ../headers/interface.h:6, from ../headers/Configuration.h:5, from ../headers/device.h:2,...
BTW, I install gcc-4.7 using Homebrew-dupes gcc formula for my Mac (OS X Lion 10.7.4). mymacmini:LibusbTest xiaofanc$ g++-4.7 -v Using built-in specs. COLLECT_GCC=g++-4.7 COLLECT_LTO_WRAPPER=/usr/local/Cellar/gcc/4.7.1/gcc/libexec/gcc/x86_64-apple-darwin11.4.0/4.7.1/lto-wrapper Target: x86_64-apple-darwin11.4.0 Configured with: ../configure --enable-languages=c,c++...
Thanks, now the conio issue is fixed but there are more problems. I guess the C++11 support of gcc 4.7.1 is really experimental. mymacmini:LibusbTest xiaofanc$ g++-4.7 -std=c++11 -I../headers LibusbTest.cpp -o...
Great, now the compiling issue is gone. But how to build the library itself? Could you provide a Makefile? mymacmini:LibusbTest xiaofanc$ g++-4.7 -std=c++11 -I../headers LibusbTest.cpp -o LibusbTest LibusbTest.cpp: In function...
Just want to report that I can burn the bootloader for the AT90CANUSB (on an old DVK90CAN1-1.1 version). It is using 8MHz oscillator and UART0. I am using a FT232...
@syph3rd Maybe you can also try to burn the bootloader using new version of avrdude 7.0 to see if that helps. It may be related to Atmel-ICE support. Ref: latest...
Usually this means Arduino installation problems.
Ref:https://github.com/pyusb/pyusb/issues/384 There seems to be some solutions for using serial port under Anroid. With python example: https://github.com/jacklinquan/usbserial4a Without python: https://github.com/mik3y/usb-serial-for-android
Just test this using my Android phone and Arduino Leonardo, it works fine with your Arduino example. https://github.com/jacklinquan/usbserial4a Follow the guide to install pydroid and then use pip to install...