Skip to content

Commit

Permalink
Fix for compiling on ESP32
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrobel authored Aug 11, 2018
1 parent 23c933f commit fa0664c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/TheThingsNetwork.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@

#include <Arduino.h>
#include <Stream.h>
#ifdef ARDUINO_ARCH_AVR
#include <avr/pgmspace.h>
#else
#include <pgmspace.h>
#endif

#define TTN_DEFAULT_SF 7
#define TTN_DEFAULT_FSB 2
Expand Down

0 comments on commit fa0664c

Please sign in to comment.