mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3028 from maclobdell/ncs36510_exporter_definitions
add ncs36510 exporter support for IARpull/3076/head
commit
44eca95c3d
|
@ -7,11 +7,11 @@
|
||||||
* $Rev: 2199 $
|
* $Rev: 2199 $
|
||||||
* $Date: 2013-08-07 12:17:27 +0200 (Wed, 07 Aug 2013) $
|
* $Date: 2013-08-07 12:17:27 +0200 (Wed, 07 Aug 2013) $
|
||||||
******************************************************************************
|
******************************************************************************
|
||||||
* Copyright 2016 Semiconductor Components Industries LLC (d/b/a “ON Semiconductor”).
|
* Copyright 2016 Semiconductor Components Industries LLC (d/b/a "ON Semiconductor").
|
||||||
* All rights reserved. This software and/or documentation is licensed by ON Semiconductor
|
* All rights reserved. This software and/or documentation is licensed by ON Semiconductor
|
||||||
* under limited terms and conditions. The terms and conditions pertaining to the software
|
* under limited terms and conditions. The terms and conditions pertaining to the software
|
||||||
* and/or documentation are available at http://www.onsemi.com/site/pdf/ONSEMI_T&C.pdf
|
* and/or documentation are available at http://www.onsemi.com/site/pdf/ONSEMI_T&C.pdf
|
||||||
* (“ON Semiconductor Standard Terms and Conditions of Sale, Section 8 Software”) and
|
* ("ON Semiconductor Standard Terms and Conditions of Sale, Section 8 Software") and
|
||||||
* if applicable the software license agreement. Do not use this software and/or
|
* if applicable the software license agreement. Do not use this software and/or
|
||||||
* documentation unless you have carefully read and you agree to the limited terms and
|
* documentation unless you have carefully read and you agree to the limited terms and
|
||||||
* conditions. By using this software and/or documentation, you agree to the limited
|
* conditions. By using this software and/or documentation, you agree to the limited
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
* *
|
* *
|
||||||
*************************************************************************************************/
|
*************************************************************************************************/
|
||||||
|
|
||||||
#ifdef IAR
|
#ifdef __ICCARM__
|
||||||
/** Define a fib table constant region, to be located at fixed offset in the binary
|
/** Define a fib table constant region, to be located at fixed offset in the binary
|
||||||
* such that flash loader knows where to find it and gets the build dependent data
|
* such that flash loader knows where to find it and gets the build dependent data
|
||||||
* it needs for programming the new fib.
|
* it needs for programming the new fib.
|
||||||
|
|
|
@ -2106,9 +2106,10 @@
|
||||||
"core": "Cortex-M3",
|
"core": "Cortex-M3",
|
||||||
"extra_labels": ["ONSEMI"],
|
"extra_labels": ["ONSEMI"],
|
||||||
"post_binary_hook": {"function": "NCS36510TargetCode.ncs36510_addfib"},
|
"post_binary_hook": {"function": "NCS36510TargetCode.ncs36510_addfib"},
|
||||||
"macros": ["REVD", "CM3", "CPU_NCS36510", "TARGET_NCS36510"],
|
"macros": ["REVD", "CM3", "CPU_NCS36510", "TARGET_NCS36510", "LOAD_ADDRESS=0x3000"],
|
||||||
"supported_toolchains": ["GCC_ARM", "ARM", "IAR"],
|
"supported_toolchains": ["GCC_ARM", "ARM", "IAR"],
|
||||||
"device_has": ["ANALOGIN", "SERIAL", "I2C", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_FC", "SLEEP", "SPI", "LOWPOWERTIMER"],
|
"device_has": ["ANALOGIN", "SERIAL", "I2C", "INTERRUPTIN", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_FC", "SLEEP", "SPI", "LOWPOWERTIMER"],
|
||||||
|
"device_name": "NCS36510",
|
||||||
"release_versions": ["2", "5"]
|
"release_versions": ["2", "5"]
|
||||||
},
|
},
|
||||||
"NUMAKER_PFM_M453": {
|
"NUMAKER_PFM_M453": {
|
||||||
|
|
|
@ -149,5 +149,8 @@
|
||||||
},
|
},
|
||||||
"nRF52832_xxAA":{
|
"nRF52832_xxAA":{
|
||||||
"OGChipSelectEditMenu": "nRF52832-xxAA\tNordicSemi nRF52832-xxAA"
|
"OGChipSelectEditMenu": "nRF52832-xxAA\tNordicSemi nRF52832-xxAA"
|
||||||
|
},
|
||||||
|
"NCS36510":{
|
||||||
|
"OGChipSelectEditMenu": "Orion\tON Semiconductor NCS36510"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue