A board support package for the LPC4088 Display Module.

Dependencies:   DM_HttpServer DM_USBHost

Dependents:   lpc4088_displaymodule_emwin lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI ... more

Fork of DMSupport by EmbeddedArtists AB

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();