Subdirectory provided by Embedded Artists
Dependencies: DM_FATFileSystem DM_HttpServer DM_USBHost EthernetInterface USBDevice mbed-rpc mbed-rtos mbed-src
Dependents: lpc4088_displaymodule_hello_world_Sept_2018
Fork of DMSupport by
Diff: crc.cpp
- Revision:
- 29:b1ec19000e15
- Parent:
- 11:dedcebcfc869
--- a/crc.cpp Fri Jan 23 17:31:56 2015 +0100 +++ b/crc.cpp Mon Jan 26 10:12:57 2015 +0100 @@ -77,7 +77,7 @@ uint32_t crc_Buffer(const uint32_t* data, uint32_t size) { CRC32_INIT(); - for (int i = 0; i < size; i++) { + for (uint32_t i = 0; i < size; i++) { CRC32_WRITE32(data[i]); } return CRC32_SUM();