You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my first time using LUFA so it's likely this isn't an actual issue, but I'm trying to compile the Keyboard ClassDriver demo project, and I want to compile it for my homemade microcontroller PCB, using an atmega32u4. I changed the makefile so that the microcontroller being used is the atmega32u4, and also changed the board to USER (I read somewhere this is what I should do).
When I then type make, I immediately get an error about Board/Joystick.h not found. I tracked this down to Drivers/Board/Joystick.h, line 126, I think that line should say #include "Joystick.h" instead of #include "Board/Joystick.h". When I make this change manually, the project compiles successfully. Have I made a mistake here, or is this in fact an issue? Should I submit a pull request?
The text was updated successfully, but these errors were encountered:
This is my first time using LUFA so it's likely this isn't an actual issue, but I'm trying to compile the Keyboard ClassDriver demo project, and I want to compile it for my homemade microcontroller PCB, using an atmega32u4. I changed the makefile so that the microcontroller being used is the atmega32u4, and also changed the board to USER (I read somewhere this is what I should do).
When I then type
make
, I immediately get an error about Board/Joystick.h not found. I tracked this down to Drivers/Board/Joystick.h, line 126, I think that line should say#include "Joystick.h"
instead of#include "Board/Joystick.h"
. When I make this change manually, the project compiles successfully. Have I made a mistake here, or is this in fact an issue? Should I submit a pull request?The text was updated successfully, but these errors were encountered: