Skip to content

Commit

Permalink
Now compatible with Old Arduinos and ChipKit32
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanseidel committed Apr 8, 2015
1 parent 6d23a92 commit 42f80de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
#ifndef Thread_h
#define Thread_h

#include <Arduino.h>
#if defined(ARDUINO) && ARDUINO >= 100
#include <Arduino.h>
#else
#include <WProgram.h>
#endif

#include <inttypes.h>

/*
Expand Down

0 comments on commit 42f80de

Please sign in to comment.