platformio / builder-framework-arduino-core-mbed

Apache License 2.0
3 stars 9 forks source link

Fix AVR compatiblity includes #1

Closed maxgerhardt closed 3 years ago

maxgerhardt commented 3 years ago

ArduinoCore-mbed does

[...] "-I{build.core.path}/api/deprecated" "-I{build.core.path}/api/deprecated-avr-comp" [..]

but PlatformIO fails to do the latter one, leading to compilation errors in libraries needing headers inside deprecated-avr-comp.

This PR corrects that.

valeros commented 3 years ago

Many thanks!