Skip to content

Commit e8f0a93

Browse files
committed
Place bundled library under src folder
All recent versions of the Arduino IDE restrict recursive compilation to the src subfolder of the sketch folder. The previous use of the lib folder to store the bundled library caused compilation to fail: C:\Users\per\AppData\Local\Temp\ccJTFh0h.ltrans0.ltrans.o: In function `setup': C:\Users\per\Desktop\G27_Pedals_and_Shifter/G27_Pedals_and_Shifter.ino:359: undefined reference to `G27' C:\Users\per\Desktop\G27_Pedals_and_Shifter/G27_Pedals_and_Shifter.ino:359: undefined reference to `G27' C:\Users\per\Desktop\G27_Pedals_and_Shifter/G27_Pedals_and_Shifter.ino:359: undefined reference to `G27_::begin(bool)' etc. Reference: arduino/arduino-builder#148
1 parent b0a1208 commit e8f0a93

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

G27_Pedals_and_Shifter.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// http://www.isrtv.com/forums/topic/13189-diy-g25-shifter-interface-with-h-pattern-sequential-and-handbrake-modes/
66

77
#include <HID.h>
8-
#include "./lib/G27PedalsShifter.h"
8+
#include "./src/G27PedalsShifter.h"
99

1010
// comment either out to disable
1111
#define USE_PEDALS
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)