diff options
| author | Donald Delmar Davis <don@suspectdevices.com> | 2013-05-16 12:39:25 -0700 |
|---|---|---|
| committer | Donald Delmar Davis <don@suspectdevices.com> | 2013-05-16 12:39:25 -0700 |
| commit | 01687719ecb2f2f51048fc7cba0b4d7b78dba02a (patch) | |
| tree | df58a356288e45971741483978e5ba72b45a88bc /support | |
| parent | e1be28187d23c34a62e89795a57d62ef3d0d8ebb (diff) | |
| parent | f11dc6be4f55ff8450416c3ce5a1018398376b8a (diff) | |
Merge remote-tracking branch 'upstream/master'
* upstream/master:
Use linker symbol __text_start__ to setup base of nvic vector table.
usb_midi_device - Control build with USB_TYPE build flag
Reverted work change
wirish/syscalls.c: add weak exit function.
libmaple/usb/stm32f1/usb.c: cosmetics.
Linker files for F20x boards with 768k flash
Added board.mk makefile with board specific defines
usb_midi_device: Reset transmitting flag in usbReset()
libmaple/usb/stm32f1/usb.c: fix build error.
Preserve previous usb state when suspending / restore on resume
usb_cdcacm: Reset transmitting flag in usbReset().
Conflicts:
libmaple/usb/stm32f1/usb_midi_device.c
Todo: Modify buffered transmit for Packets.
Diffstat (limited to 'support')
| -rw-r--r-- | support/ld/extra_libs.inc | 1 | ||||
| -rw-r--r-- | support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc | 5 | ||||
| -rw-r--r-- | support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/support/ld/extra_libs.inc b/support/ld/extra_libs.inc new file mode 100644 index 0000000..1216f97 --- /dev/null +++ b/support/ld/extra_libs.inc @@ -0,0 +1 @@ +/* toolchain specific stuff */ diff --git a/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc b/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc new file mode 100644 index 0000000..d62fb7a --- /dev/null +++ b/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 112K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 768K +} diff --git a/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc b/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc new file mode 100644 index 0000000..d21f17c --- /dev/null +++ b/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 112K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 0K +} |
