-# Makefile for GPIO Demo Module
+# Makefile for LPC122x micro-controller based boards
TARGET_DIR = apps/$(MODULE)/$(NAME)
+# If you use another of the LPC122x micro-controllers, copy the lpc_link_lpc1224.ld file
+# to match you LPC micro-controller model and modify the memory sizes definitions at the
+# beginning of your new file.
+# Note that the LPC1224 has the smallest memory of the LPC122x branch, and thus using the
+# lpc1224 linker script will work for all LPC122x, but not all memory will be available.
LPC = lpc1224
CPU = cortex-m0
ARCH = armv6-m
CROSS_COMPILE ?= arm-none-eabi-
CC = $(CROSS_COMPILE)gcc
+#DEBUG = -g
+LD_DEBUG = $(DEBUG)
+#LD_DEBUG = $(DEBUG) -Wl,--print-memory-usage
+#LD_DEBUG = $(DEBUG) -Wl,--print-gc-sections -Wl,--print-output-format \
+ -Wl,--print-memory-usage
FOPTS = -fno-builtin -ffunction-sections -fdata-sections -ffreestanding
-CFLAGS = -Wall -g -O2 -mthumb -mcpu=$(CPU) $(FOPTS)
-LINKOPTS = -static -g -nostartfiles -nostdlib \
- -Wl,--gc-sections -Wl,--build-id=none \
- -Wl,-Map=$(TARGET_DIR)/lpc_map_$(LPC).map -Tlpc_link_$(LPC).ld
+CFLAGS = -Wall -O2 $(DEBUG) -mthumb -mcpu=$(CPU) $(FOPTS)
+LDFLAGS = -static $(LD_DEBUG) -nostartfiles -nostdlib -Tlpc_link_$(LPC).ld \
+ -Wl,--gc-sections -Wl,--sort-section=alignment -Wl,--build-id=none \
+ -Wl,-Map=$(TARGET_DIR)/lpc_map_$(LPC).map
APPS = $(subst apps/,,$(wildcard apps/*/*))
.PRECIOUS: %.elf
%.elf: $(OBJS) $(NAME_OBJS)
@echo "Linking $(MODULE)/$(NAME) ..."
- @$(CC) $(LINKOPTS) $(OBJS) $(NAME_OBJS) -o $@
+ @$(CC) $(LDFLAGS) $(OBJS) $(NAME_OBJS) -o $@
%.bin: %.elf
@echo "Creating image : \e[32m$@\e[39m"
-This repository provides example code for the development modules made by
-Techno-Innov.
+This repository provides support for the LPC122x microcontroller from NXP and
+example code for the development modules made by Techno-Innov.
-It has support for the LPC1224 as used on the development modules, and
+It has support for the LPC122x as used on the development modules, and
for the peripherals found on the development modules (user led, eeprom,
temperature sensor, CC1101 RF transceiver, ...).
Support for various other cool stuff is added when we play with it.
********************
SUPPORTED FEATURES and INTERFACES
-- LPC1224 micro-controller definitions
+- LPC122x micro-controller definitions
- Cortex-M0 specific definitions
- - Cortex-M0 and LPC1224 Registers
+ - Cortex-M0 and LPC122x Registers
- Interrupts
- ROM based division routines
- Utility functions to replace ctz and clz instructions (not present in Cortex M0)
- SPI (SSP)
- PWM
- RTC (partial)
+ - Watchdog
- External Device drivers
- I²C EEPROM
- TMP101 I²C temperature sensor
- - DHT11 temperatur and Humidity sensor
- CC1101 Sub 1GHz RF Transceiver
- Status led
- Epaper display
- Add support for SDCard over SPI
- Complete RTC Support
- Comparator support
-- Watchdog support
- CRC engine support
- Test UART IrDA mode
- DTPlug communication protocol tests + continue development of other functionalities.
- Continue tests for NCN5120 support
- More external drivers !
+- Fix DHT11 temperatur and Humidity sensor support
info (rx) : ORIGIN = 0x00040200, LENGTH = 1536
}
-_sram_size = 4k;
-_sram_base = 0x10000000;
+_sram_size = LENGTH(sram);
+_sram_base = ORIGIN(sram);
/* Leave 32 bytes for IAP functions, see UM10441 Chapter 20, section 20.8 */
_end_stack = (_sram_base + _sram_size - 32);
-_start_info = 0x00040200;
-_end_info = (_start_info + 1536);
-
ENTRY(Reset_Handler)
{
FILL(0xFF);
KEEP(*(.vectors))
- *(.text.Reset_Handler .text.SystemInit)
+ *(.text.Reset_Handler .text.system_init)
. = 0x000002FC;
KEEP(*(.crp))
+ . = 0x00000300;
*(.text*)
*(.rodata*)
*(.got*)
+ . = ALIGN(4);
_end_text = .;
} >flash
*(COMMON)
_end_bss = .;
} >sram
+
+ . = ALIGN(4);
+
}
_end = .;