Fixed CRC calculation for wakeup and some of the potential host endianess issues
[JMraidcon.git] / src / jm_crc.h
1 #ifndef JM_CRC_H
2 #define JM_CRC_H
3
4 #include <stdint.h>
5
6 uint32_t JM_CRC(uint32_t* theData, uint32_t numDwords);
7
8 #endif
9