Skip to content

Commit

Permalink
Add support to Renesas RL78
Browse files Browse the repository at this point in the history
Compiling this library without this change results in a compile error because util/delay.h does not exist on RL78
  • Loading branch information
fabiopjve authored Jun 21, 2024
1 parent 5fa3388 commit 8a95bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adafruit_SSD1306.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#endif

#if !defined(__ARM_ARCH) && !defined(ENERGIA) && !defined(ESP8266) && \
!defined(ESP32) && !defined(__arc__)
!defined(ESP32) && !defined(__arc__) && !defined(__RL78__)
#include <util/delay.h>
#endif

Expand Down

0 comments on commit 8a95bae

Please sign in to comment.