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.
Fork of mbed by
Diff: LPC1768/device.h
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 57:0480438fc29c
diff -r 71b101360fb9 -r d722ed6a4237 LPC1768/device.h --- a/LPC1768/device.h Tue Jan 08 12:46:36 2013 +0000 +++ b/LPC1768/device.h Wed Jan 16 12:56:34 2013 +0000 @@ -47,9 +47,17 @@ #define DEVICE_PWMOUT 1 -#define DEVICE_LOCALFILESYSTEM 1 +#if defined (__ICCARM__) +#define DEVICE_SEMIHOST 0 +#else +#define DEVICE_SEMIHOST 1 +#endif -#define DEVICE_SLEEP 0 +#if DEVICE_SEMIHOST +#define DEVICE_LOCALFILESYSTEM 1 +#endif + +#define DEVICE_SLEEP 1 #define DEVICE_DEBUG_AWARENESS 1
