forked from don/NDEF
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hack around F() macro and PSTR for running on Due
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// redefine some stuff so code works on Due | ||
// http://arduino.cc/forum/index.php?&topic=153761.0 | ||
|
||
#ifndef Due_h | ||
#define Due_h | ||
|
||
#if defined(__SAM3X8E__) | ||
#define PROGMEM | ||
#define pgm_read_byte(x) (*((char *)x)) | ||
// #define pgm_read_word(x) (*((short *)(x & 0xfffffffe))) | ||
#define pgm_read_word(x) ( ((*((unsigned char *)x + 1)) << 8) + (*((unsigned char *)x))) | ||
#define pgm_read_byte_near(x) (*((char *)x)) | ||
#define pgm_read_byte_far(x) (*((char *)x)) | ||
// #define pgm_read_word_near(x) (*((short *)(x & 0xfffffffe)) | ||
// #define pgm_read_word_far(x) (*((short *)(x & 0xfffffffe))) | ||
#define pgm_read_word_near(x) ( ((*((unsigned char *)x + 1)) << 8) + (*((unsigned char *)x))) | ||
#define pgm_read_word_far(x) ( ((*((unsigned char *)x + 1)) << 8) + (*((unsigned char *)x)))) | ||
#define PSTR(x) x | ||
#if defined F | ||
#undef F | ||
#endif | ||
#define F(X) (X) | ||
#endif | ||
|
||
#endif |