libopencm3/lib/lpc43xx
Karl Palsson e15071dbf8 BREAKING: drop all part specific ld files
We were never going to be capable of supporting every single part
variant with their own files, so stop trying.  We've been supporting the
linker script generator for a long time now, so move on from these old
static files.

Breaking: if you were using one of these, and don't wish to use the
linker script generator, you should simply declare a stub linker script,
and include the generic section definitions file, and provide this in
your own application.

Old:
LDSCRIPT = $(OPENCM3_DIR)/lib/stm32/l1/stm32l15xxb.ld

New (linker script generator):

DEVICE=stm32l151cb

New (manual):

* Add file mymemorymap.ld, with contents similar too:
```
MEMORY
{
       rom (rx) : ORIGIN = 0x08000000, LENGTH = 256K
       ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K
}

/* Include the common ld script. */
INCLUDE cortex-m-generic.ld
```

LDSCRIPT=mymemorymap.ld

See ld/README for more information on using the linker script generator
2020-11-28 22:13:25 +00:00
..
m0 BREAKING: drop all part specific ld files 2020-11-28 22:13:25 +00:00
m4 BREAKING: drop all part specific ld files 2020-11-28 22:13:25 +00:00
gpio.c Changed to use stdint types. 2013-06-12 19:11:22 -07:00
i2c.c Add a duty cycle count argument to i2c0_init() to adjust for changes in APB1 clock. 2013-07-07 13:52:12 -07:00
ipc.c [Style] checked and corrected 2013-08-22 22:29:40 -07:00
scu.c Changed to use stdint types. 2013-06-12 19:11:22 -07:00
ssp.c [Style] checked and corrected 2013-08-22 22:29:40 -07:00
timer.c [Style] checked and corrected 2013-08-22 22:29:40 -07:00
uart.c [Style] checked and corrected 2013-08-22 22:29:40 -07:00