Skip to content

Commit

Permalink
Merge pull request #243 from jstrobel/master
Browse files Browse the repository at this point in the history
Fix for compiling on ESP32
  • Loading branch information
johanstokking authored Aug 14, 2018
2 parents 23c933f + fa0664c commit 80a517f
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 80a517f

Please sign in to comment.