diff options
-rw-r--r-- | demos/ARMCM3-LPC1343-GCC/Makefile | 6 | ||||
-rw-r--r-- | demos/ARMCM3-LPC1343-GCC/ch.ld | 2 | ||||
-rw-r--r-- | os/ports/GCC/ARMCMx/LPC13xx/cmparams.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/demos/ARMCM3-LPC1343-GCC/Makefile b/demos/ARMCM3-LPC1343-GCC/Makefile index cf093150e..009ccacb6 100644 --- a/demos/ARMCM3-LPC1343-GCC/Makefile +++ b/demos/ARMCM3-LPC1343-GCC/Makefile @@ -111,9 +111,9 @@ INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \ # Compiler settings
#
-MCU = cortex-m0
+MCU = cortex-m3
-TRGT = arm-none-eabi-
+TRGT = arm-elf-
CC = $(TRGT)gcc
CPPC = $(TRGT)g++
# Enable loading with g++ only if you need C++ runtime support.
@@ -148,7 +148,7 @@ CPPWARN = -Wall -Wextra #
# List all default C defines here, like -D_DEBUG=1
-DDEFS = -DLPC1114 -D__NEWLIB__
+DDEFS = -DLPC1348 -D__NEWLIB__
# List all default ASM defines here, like -D_DEBUG=1
DADEFS =
diff --git a/demos/ARMCM3-LPC1343-GCC/ch.ld b/demos/ARMCM3-LPC1343-GCC/ch.ld index 8497ebeea..a7f0cda45 100644 --- a/demos/ARMCM3-LPC1343-GCC/ch.ld +++ b/demos/ARMCM3-LPC1343-GCC/ch.ld @@ -18,7 +18,7 @@ */
/*
- * LPC1114 memory setup.
+ * LPC1343 memory setup.
*/
__main_stack_size__ = 0x0100;
__process_stack_size__ = 0x0100;
diff --git a/os/ports/GCC/ARMCMx/LPC13xx/cmparams.h b/os/ports/GCC/ARMCMx/LPC13xx/cmparams.h index f951243ff..bc8d76b77 100644 --- a/os/ports/GCC/ARMCMx/LPC13xx/cmparams.h +++ b/os/ports/GCC/ARMCMx/LPC13xx/cmparams.h @@ -19,11 +19,11 @@ /**
* @file ARMCMx/LPC13xx/cmparams.h
- * @brief ARM Cortex-M0 LPC13xx Specific Parameters.
+ * @brief ARM Cortex-M3 LPC13xx Specific Parameters.
*
* @defgroup ARMCMx_LPC13xx LPC13xx Specific Parameters
* @ingroup ARMCMx
- * @details This file contains the Cortex-M0 specific parameters for the
+ * @details This file contains the Cortex-M3 specific parameters for the
* LPC13xx platform.
* @{
*/
|