FrankBoesing / FastCRC

Fast CRC library for PC and ARDUINO
MIT License
148 stars 50 forks source link

Lib don't work on ESP8266 Arduio #10

Closed e1970180 closed 7 years ago

e1970180 commented 7 years ago

Dear Frank,

Would you please make possible to use you great lib on ESP82266 also?

I propose it could be done by changing header file from

include <avr/pgmspace.h>

to something like this:

ifdef AVR

#include <avr/pgmspace.h>

elif defined(ESP8266)

#include <pgmspace.h>

endif

Thanks in advance!

FrankBoesing commented 7 years ago

https://github.com/FrankBoesing/FastCRC/commit/93869422f2dbfbc5429ea7f5db3b8b0293688844

Thanks :)