mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
<>
Date:
Tue Mar 14 16:20:51 2017 +0000
Revision:
138:093f2bd7b9eb
Parent:
128:9bcdf88f62b0
Release 138 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3716: fix for issue #3715: correction in startup files for ARM and IAR, alignment of system_stm32f429xx.c files https://github.com/ARMmbed/mbed-os/pull/3716
3741: STM32 remove warning in hal_tick_32b.c file https://github.com/ARMmbed/mbed-os/pull/3741
3780: STM32L4 : Fix GPIO G port compatibility https://github.com/ARMmbed/mbed-os/pull/3780
3831: NCS36510: SPISLAVE enabled (Conflict resolved) https://github.com/ARMmbed/mbed-os/pull/3831
3836: Allow to redefine nRF's PSTORAGE_NUM_OF_PAGES outside of the mbed-os https://github.com/ARMmbed/mbed-os/pull/3836
3840: STM32: gpio SPEED - always set High Speed by default https://github.com/ARMmbed/mbed-os/pull/3840
3844: STM32 GPIO: Typo correction. Update comment (GPIO_IP_WITHOUT_BRR) https://github.com/ARMmbed/mbed-os/pull/3844
3850: STM32: change spi error to debug warning https://github.com/ARMmbed/mbed-os/pull/3850
3860: Define GPIO_IP_WITHOUT_BRR for xDot platform https://github.com/ARMmbed/mbed-os/pull/3860
3880: DISCO_F469NI: allow the use of CAN2 instance when CAN1 is not activated https://github.com/ARMmbed/mbed-os/pull/3880
3795: Fix pwm period calc https://github.com/ARMmbed/mbed-os/pull/3795
3828: STM32 CAN API: correct format and type https://github.com/ARMmbed/mbed-os/pull/3828
3842: TARGET_NRF: corrected spi_init() to properly handle re-initialization https://github.com/ARMmbed/mbed-os/pull/3842
3843: STM32L476xG: set APB2 clock to 80MHz (instead of 40MHz) https://github.com/ARMmbed/mbed-os/pull/3843
3879: NUCLEO_F446ZE: Add missing AnalogIn pins on PF_3, PF_5 and PF_10. https://github.com/ARMmbed/mbed-os/pull/3879
3902: Fix heap and stack size for NUCLEO_F746ZG https://github.com/ARMmbed/mbed-os/pull/3902
3829: can_write(): return error code when no tx mailboxes are available https://github.com/ARMmbed/mbed-os/pull/3829

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 99:dbbf35b96557 1 /* [ROM] */
Kojto 99:dbbf35b96557 2 define symbol __intvec_start__ = 0x0;
Kojto 99:dbbf35b96557 3 define symbol __region_ROM_start__ = 0x0;
Kojto 99:dbbf35b96557 4 define symbol __region_ROM_end__ = 0x0003FFFF;
Kojto 99:dbbf35b96557 5
Kojto 99:dbbf35b96557 6 /* [RAM] Vector table dynamic copy: 79 vectors * 4 bytes = 316 bytes (0x13C) */
Kojto 99:dbbf35b96557 7 define symbol __NVIC_start__ = 0x00000000;
Kojto 99:dbbf35b96557 8 define symbol __NVIC_end__ = 0x00000140; /* to be aligned on 8 bytes */
Kojto 99:dbbf35b96557 9 define symbol __region_RAM_start__ = 0x20000000;
Kojto 99:dbbf35b96557 10 define symbol __region_RAM_end__ = 0x20007FFF;
Kojto 99:dbbf35b96557 11
Kojto 99:dbbf35b96557 12 /* Memory regions */
Kojto 99:dbbf35b96557 13 define memory mem with size = 4G;
Kojto 99:dbbf35b96557 14 define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__];
Kojto 99:dbbf35b96557 15 define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
Kojto 99:dbbf35b96557 16
Kojto 99:dbbf35b96557 17 /* Stack and Heap */
<> 128:9bcdf88f62b0 18 define symbol __size_cstack__ = 0x0800;
<> 128:9bcdf88f62b0 19 define symbol __size_heap__ = 0x3000;
Kojto 99:dbbf35b96557 20 define block CSTACK with alignment = 8, size = __size_cstack__ { };
Kojto 99:dbbf35b96557 21 define block HEAP with alignment = 8, size = __size_heap__ { };
Kojto 99:dbbf35b96557 22
Kojto 99:dbbf35b96557 23 initialize by copy { readwrite };
Kojto 99:dbbf35b96557 24 do not initialize { section .noinit };
Kojto 99:dbbf35b96557 25
Kojto 99:dbbf35b96557 26 place at address mem:__intvec_start__ { readonly section .intvec };
Kojto 99:dbbf35b96557 27 place in ROM_region { readonly };
Kojto 99:dbbf35b96557 28 place in RAM_region { readwrite,
Kojto 99:dbbf35b96557 29 block CSTACK, block HEAP };