ads1115 only
Fork of mbed by
platform/mbed_preprocessor.h@130:d75b3fe1f5cb, 2016-11-24 (annotated)
- Committer:
- <>
- Date:
- Thu Nov 24 11:01:25 2016 +0000
- Revision:
- 130:d75b3fe1f5cb
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?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 130:d75b3fe1f5cb | 1 | /** \addtogroup platform */ |
<> | 130:d75b3fe1f5cb | 2 | /** @{*/ |
<> | 130:d75b3fe1f5cb | 3 | /* mbed Microcontroller Library |
<> | 130:d75b3fe1f5cb | 4 | * Copyright (c) 2006-2013 ARM Limited |
<> | 130:d75b3fe1f5cb | 5 | * |
<> | 130:d75b3fe1f5cb | 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
<> | 130:d75b3fe1f5cb | 7 | * you may not use this file except in compliance with the License. |
<> | 130:d75b3fe1f5cb | 8 | * You may obtain a copy of the License at |
<> | 130:d75b3fe1f5cb | 9 | * |
<> | 130:d75b3fe1f5cb | 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
<> | 130:d75b3fe1f5cb | 11 | * |
<> | 130:d75b3fe1f5cb | 12 | * Unless required by applicable law or agreed to in writing, software |
<> | 130:d75b3fe1f5cb | 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
<> | 130:d75b3fe1f5cb | 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
<> | 130:d75b3fe1f5cb | 15 | * See the License for the specific language governing permissions and |
<> | 130:d75b3fe1f5cb | 16 | * limitations under the License. |
<> | 130:d75b3fe1f5cb | 17 | */ |
<> | 130:d75b3fe1f5cb | 18 | #ifndef MBED_PREPROCESSOR_H |
<> | 130:d75b3fe1f5cb | 19 | #define MBED_PREPROCESSOR_H |
<> | 130:d75b3fe1f5cb | 20 | |
<> | 130:d75b3fe1f5cb | 21 | |
<> | 130:d75b3fe1f5cb | 22 | /** MBED_CONCAT |
<> | 130:d75b3fe1f5cb | 23 | * Concatenate tokens together |
<> | 130:d75b3fe1f5cb | 24 | * |
<> | 130:d75b3fe1f5cb | 25 | * @note |
<> | 130:d75b3fe1f5cb | 26 | * Expands tokens before concatenation |
<> | 130:d75b3fe1f5cb | 27 | * |
<> | 130:d75b3fe1f5cb | 28 | * @code |
<> | 130:d75b3fe1f5cb | 29 | * // Creates a unique label based on the line number |
<> | 130:d75b3fe1f5cb | 30 | * int MBED_CONCAT(UNIQUE_LABEL_, __LINE__) = 1; |
<> | 130:d75b3fe1f5cb | 31 | * @endcode |
<> | 130:d75b3fe1f5cb | 32 | */ |
<> | 130:d75b3fe1f5cb | 33 | #define MBED_CONCAT(a, b) MBED_CONCAT_(a, b) |
<> | 130:d75b3fe1f5cb | 34 | #define MBED_CONCAT_(a, b) a##b |
<> | 130:d75b3fe1f5cb | 35 | |
<> | 130:d75b3fe1f5cb | 36 | /** MBED_STRINGIFY |
<> | 130:d75b3fe1f5cb | 37 | * Converts tokens into strings |
<> | 130:d75b3fe1f5cb | 38 | * |
<> | 130:d75b3fe1f5cb | 39 | * @note |
<> | 130:d75b3fe1f5cb | 40 | * Expands tokens before stringification |
<> | 130:d75b3fe1f5cb | 41 | * |
<> | 130:d75b3fe1f5cb | 42 | * @code |
<> | 130:d75b3fe1f5cb | 43 | * // Creates a string based on the parameters |
<> | 130:d75b3fe1f5cb | 44 | * const char *c = MBED_STRINGIFY(This is a ridiculous way to create a string) |
<> | 130:d75b3fe1f5cb | 45 | * @endcode |
<> | 130:d75b3fe1f5cb | 46 | */ |
<> | 130:d75b3fe1f5cb | 47 | #define MBED_STRINGIFY(a) MBED_STRINGIFY_(a) |
<> | 130:d75b3fe1f5cb | 48 | #define MBED_STRINGIFY_(a) #a |
<> | 130:d75b3fe1f5cb | 49 | |
<> | 130:d75b3fe1f5cb | 50 | |
<> | 130:d75b3fe1f5cb | 51 | #endif |
<> | 130:d75b3fe1f5cb | 52 | |
<> | 130:d75b3fe1f5cb | 53 | /** @}*/ |