Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DM_FATFileSystem DM_HttpServer DM_USBHost EthernetInterface USBDevice mbed-rpc mbed-rtos mbed-src
Fork of DMSupport by
Diff: Memory/InternalEEPROM.cpp
- Revision:
- 29:b1ec19000e15
- Parent:
- 20:9df19da50290
- Child:
- 34:fc366bab393f
diff -r 8ae20cb0b943 -r b1ec19000e15 Memory/InternalEEPROM.cpp
--- a/Memory/InternalEEPROM.cpp	Fri Jan 23 17:31:56 2015 +0100
+++ b/Memory/InternalEEPROM.cpp	Mon Jan 26 10:12:57 2015 +0100
@@ -81,7 +81,7 @@
   clearInterrupt(EEPROM_INT_ENDOFRW);
   setAddr(pageAddr, pageOffset);
   setCmd(EEPROM_CMD_8BITS_READ | EEPROM_CMD_RDPREFETCH);
-  for (int i = 0; i < size; i++) {
+  for (uint32_t i = 0; i < size; i++) {
     buf[i] = LPC_EEPROM->RDATA & 0xff;
     waitForInterrupt(EEPROM_INT_ENDOFRW);
   }
@@ -92,7 +92,7 @@
   clearInterrupt(EEPROM_INT_ENDOFRW);
   setCmd(EEPROM_CMD_8BITS_WRITE);
   setAddr(pageAddr, pageOffset);
-  for (int i = 0; i < size; i++) {
+  for (uint32_t i = 0; i < size; i++) {
     LPC_EEPROM->WDATA = buf[i];
     waitForInterrupt(EEPROM_INT_ENDOFRW);
   }
    