ads1115 only

Fork of mbed by mbed official

Committer:
<>
Date:
Thu Nov 24 11:01:25 2016 +0000
Revision:
130:d75b3fe1f5cb
Parent:
128:9bcdf88f62b0
Release 130 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3127: Fixed the issue about push/pop of VFP register. https://github.com/ARMmbed/mbed-os/pull/3127
3176: Modifying micro:bit pin names to mirror micro:bit edge connector https://github.com/ARMmbed/mbed-os/pull/3176
3160: Fix wrong index at LPC43xx tx end ring assignment https://github.com/ARMmbed/mbed-os/pull/3160
3217: Add I2C_ASYNCH capability for DISCO_F469NI https://github.com/ARMmbed/mbed-os/pull/3217
3211: [NUC472/M453] Support single UART shared by multiple serial objects and other updates https://github.com/ARMmbed/mbed-os/pull/3211
3198: NUCLEO_F410RB: Add I2C_ASYNCH capability https://github.com/ARMmbed/mbed-os/pull/3198
3194: Update K64 sdk drivers https://github.com/ARMmbed/mbed-os/pull/3194
3159: User trim values for NCS36510 https://github.com/ARMmbed/mbed-os/pull/3159
3243: Fix make exporters compilation https://github.com/ARMmbed/mbed-os/pull/3243
3231: STM32F3: DISCO_F303VC - Add missing UART and ADC pin muxing options https://github.com/ARMmbed/mbed-os/pull/3231
3233: K20xx Calculate PWM clock relative to bus clock https://github.com/ARMmbed/mbed-os/pull/3233
3237: Added back USART 6 pins https://github.com/ARMmbed/mbed-os/pull/3237
3253: Fix default polarity on LPC43XX PWM driver https://github.com/ARMmbed/mbed-os/pull/3253
3238: Dev i2c stm32f4hal https://github.com/ARMmbed/mbed-os/pull/3238
3251: Dev stm32l0 cube v1.7.0 https://github.com/ARMmbed/mbed-os/pull/3251
3252: [NORDIC - NRF51 - MBED 2] Fix non handled RTC IRQ https://github.com/ARMmbed/mbed-os/pull/3252

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 128:9bcdf88f62b0 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
<> 128:9bcdf88f62b0 2 /*-Editor annotation file-*/
<> 128:9bcdf88f62b0 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
<> 128:9bcdf88f62b0 4 /*-Specials-*/
<> 128:9bcdf88f62b0 5 define symbol __ICFEDIT_intvec_start__ = 0x00000000;
<> 128:9bcdf88f62b0 6 /*-Memory Regions-*/
<> 128:9bcdf88f62b0 7 define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
<> 128:9bcdf88f62b0 8 define symbol __ICFEDIT_region_ROM_end__ = 0x00040000;
<> 128:9bcdf88f62b0 9 define symbol __ICFEDIT_region_IRAM_start__ = 0x20000000;
<> 128:9bcdf88f62b0 10 define symbol __ICFEDIT_region_IRAM_end__ = 0x20008000;
<> 128:9bcdf88f62b0 11 /*-Sizes-*/
<> 130:d75b3fe1f5cb 12 define symbol __ICFEDIT_size_cstack__ = 0x800;
<> 128:9bcdf88f62b0 13 define symbol __ICFEDIT_size_heap__ = 0x4000;
<> 128:9bcdf88f62b0 14 /**** End of ICF editor section. ###ICF###*/
<> 128:9bcdf88f62b0 15
<> 128:9bcdf88f62b0 16
<> 128:9bcdf88f62b0 17 define memory mem with size = 4G;
<> 128:9bcdf88f62b0 18 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
<> 128:9bcdf88f62b0 19 define region IRAM_region = mem:[from __ICFEDIT_region_IRAM_start__ to __ICFEDIT_region_IRAM_end__];
<> 128:9bcdf88f62b0 20
<> 128:9bcdf88f62b0 21 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
<> 128:9bcdf88f62b0 22 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
<> 128:9bcdf88f62b0 23 /* NOTE: Vector table base requires to be aligned to the power of vector table size. Give a safe value here. */
<> 128:9bcdf88f62b0 24 define block IRAMVEC with alignment = 1024, size = 4 * (16 + 64) { };
<> 128:9bcdf88f62b0 25
<> 128:9bcdf88f62b0 26
<> 128:9bcdf88f62b0 27 initialize by copy { readwrite };
<> 128:9bcdf88f62b0 28 do not initialize { section .noinit };
<> 128:9bcdf88f62b0 29
<> 128:9bcdf88f62b0 30 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
<> 128:9bcdf88f62b0 31
<> 128:9bcdf88f62b0 32 place in ROM_region { readonly };
<> 128:9bcdf88f62b0 33 place at start of IRAM_region { block CSTACK };
<> 128:9bcdf88f62b0 34 place in IRAM_region { block IRAMVEC };
<> 128:9bcdf88f62b0 35 place in IRAM_region { readwrite };
<> 128:9bcdf88f62b0 36 place in IRAM_region { block HEAP };