Skip to content

Commit

Permalink
Fix __SAM3X8E__
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankBoesing authored Jan 1, 2019
1 parent 40fe61c commit 58011f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FastCRC_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
#define FastCRC_tables
#include "inttypes.h"

#if !defined(__SAM3X8E__)
#if defined(__AVR__ ) || defined(__IMXRT1052__) || defined(__IMXRT1060__)
#if defined(__SAM3X8E__)
#include <avr/pgmspace.h>
#endif
#else
#include <pgmspace.h>
#endif
#endif

const uint8_t crc_table_crc7[256] PROGMEM = {
0x00, 0x12, 0x24, 0x36, 0x48, 0x5a, 0x6c, 0x7e,
Expand Down

0 comments on commit 58011f9

Please sign in to comment.