IAP class library for LPC1768, LPC11U24, LPC1114, LPC812 and LPC824
Dependents: MakerBotServer SystemManagement IAP_testing Arch_Pro_TCPSocket ... more
Revision 3:87e117b1bdf2, committed 2015-01-13
- Comitter:
- okano
- Date:
- Tue Jan 13 09:11:41 2015 +0000
- Parent:
- 2:17f3464672c1
- Child:
- 4:cee1a2a734c9
- Commit message:
- ver3.1 : LPC1114 support
Changed in this revision
| IAP.cpp | Show annotated file Show diff for this revision Revisions of this file |
| IAP.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/IAP.cpp Fri Jan 09 06:36:56 2015 +0000 +++ b/IAP.cpp Tue Jan 13 09:11:41 2015 +0000 @@ -23,6 +23,7 @@ * revision 2.1 26-Nov-2012 EEPROM access code imported from Suga koubou san's (http://mbed.org/users/okini3939/) library * http://mbed.org/users/okini3939/code/M0_EEPROM_test/ * revision 3.0 09-Jan-2014 LPC812 and LPC824 support added + * revision 3.1 13-Jan-2014 LPC1114 support added */ #include "mbed.h"
--- a/IAP.h Fri Jan 09 06:36:56 2015 +0000
+++ b/IAP.h Tue Jan 13 09:11:41 2015 +0000
@@ -23,6 +23,7 @@
* revision 2.1 26-Nov-2012 EEPROM access code imported from Suga koubou san's (http://mbed.org/users/okini3939/) library
* http://mbed.org/users/okini3939/code/M0_EEPROM_test/
* revision 3.0 09-Jan-2014 LPC812 and LPC824 support added
+ * revision 3.1 13-Jan-2014 LPC1114 support added
*/
@@ -149,7 +150,7 @@
(char *)FLASH_SECTOR_29
};
-#elif defined(TARGET_LPC11U24)
+#elif defined(TARGET_LPC11U24) || defined(TARGET_LPC1114)
#define USER_FLASH_AREA_START FLASH_SECTOR_7
#define USER_FLASH_AREA_SIZE (FLASH_SECTOR_SIZE * 1)
IAP (In-Application Programming)