We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to implement a usb communication between a xmega128A3 or xmega128A1 and my pc. But it don't work. Could someone help me with a working example?
Thanks Martin
The text was updated successfully, but these errors were encountered:
You should be able to change the MCU = line in the makefile to build for another processor.
MCU =
makefile
Also note that you will need the Xmega128A1U or Xmega128A3U, as the older variants without the U do not have USB support.
Sorry, something went wrong.
I'm using the avr studio. Maybe I did some configurations wrong.
If you're letting AVR Studio generate a makefile, make sure it's defining the options that the original makefile does:
USB_MAXEP=2 USB_EP0SIZE=64 F_CPU=32000000UL F_USB=48000000UL
or add those as #defines in a file included from usb.h
#define
usb.h
No branches or pull requests
I try to implement a usb communication between a xmega128A3 or xmega128A1 and my pc. But it don't work.
Could someone help me with a working example?
Thanks Martin
The text was updated successfully, but these errors were encountered: