The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
<>
Date:
Tue Mar 14 16:20:51 2017 +0000
Revision:
138:093f2bd7b9eb
Parent:
82:6473597d706e
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
bogdanm 66:9c8f0e3462fb 1 /* mbed Microcontroller Library
bogdanm 66:9c8f0e3462fb 2 * Copyright (c) 2006-2013 ARM Limited
bogdanm 66:9c8f0e3462fb 3 *
bogdanm 66:9c8f0e3462fb 4 * Licensed under the Apache License, Version 2.0 (the "License");
bogdanm 66:9c8f0e3462fb 5 * you may not use this file except in compliance with the License.
bogdanm 66:9c8f0e3462fb 6 * You may obtain a copy of the License at
bogdanm 66:9c8f0e3462fb 7 *
bogdanm 66:9c8f0e3462fb 8 * http://www.apache.org/licenses/LICENSE-2.0
bogdanm 66:9c8f0e3462fb 9 *
bogdanm 66:9c8f0e3462fb 10 * Unless required by applicable law or agreed to in writing, software
bogdanm 66:9c8f0e3462fb 11 * distributed under the License is distributed on an "AS IS" BASIS,
bogdanm 66:9c8f0e3462fb 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
bogdanm 66:9c8f0e3462fb 13 * See the License for the specific language governing permissions and
bogdanm 66:9c8f0e3462fb 14 * limitations under the License.
bogdanm 66:9c8f0e3462fb 15 */
bogdanm 66:9c8f0e3462fb 16 #ifndef MBED_OBJECTS_H
bogdanm 66:9c8f0e3462fb 17 #define MBED_OBJECTS_H
bogdanm 66:9c8f0e3462fb 18
bogdanm 66:9c8f0e3462fb 19 #include "cmsis.h"
bogdanm 66:9c8f0e3462fb 20 #include "PortNames.h"
bogdanm 66:9c8f0e3462fb 21 #include "PeripheralNames.h"
bogdanm 66:9c8f0e3462fb 22 #include "PinNames.h"
bogdanm 66:9c8f0e3462fb 23
bogdanm 66:9c8f0e3462fb 24 #ifdef __cplusplus
bogdanm 66:9c8f0e3462fb 25 extern "C" {
bogdanm 66:9c8f0e3462fb 26 #endif
bogdanm 66:9c8f0e3462fb 27
bogdanm 66:9c8f0e3462fb 28 struct gpio_irq_s {
bogdanm 66:9c8f0e3462fb 29 uint32_t ch;
bogdanm 66:9c8f0e3462fb 30 };
bogdanm 66:9c8f0e3462fb 31
bogdanm 66:9c8f0e3462fb 32 struct port_s {
bogdanm 66:9c8f0e3462fb 33 __IO uint32_t *reg_dir;
bogdanm 66:9c8f0e3462fb 34 __IO uint32_t *reg_mpin;
bogdanm 66:9c8f0e3462fb 35 PortName port;
bogdanm 66:9c8f0e3462fb 36 uint32_t mask;
bogdanm 66:9c8f0e3462fb 37 };
bogdanm 66:9c8f0e3462fb 38
bogdanm 66:9c8f0e3462fb 39 struct pwmout_s {
bogdanm 66:9c8f0e3462fb 40 PWMName pwm;
bogdanm 66:9c8f0e3462fb 41 };
bogdanm 66:9c8f0e3462fb 42
bogdanm 66:9c8f0e3462fb 43 struct serial_s {
bogdanm 66:9c8f0e3462fb 44 LPC_USART_Type *uart;
bogdanm 66:9c8f0e3462fb 45 int index;
bogdanm 66:9c8f0e3462fb 46 };
bogdanm 66:9c8f0e3462fb 47
bogdanm 66:9c8f0e3462fb 48 struct analogin_s {
bogdanm 66:9c8f0e3462fb 49 ADCName adc;
bogdanm 66:9c8f0e3462fb 50 };
bogdanm 66:9c8f0e3462fb 51
bogdanm 66:9c8f0e3462fb 52 struct i2c_s {
bogdanm 66:9c8f0e3462fb 53 LPC_I2C_Type *i2c;
bogdanm 66:9c8f0e3462fb 54 };
bogdanm 66:9c8f0e3462fb 55
bogdanm 66:9c8f0e3462fb 56 struct spi_s {
bogdanm 66:9c8f0e3462fb 57 LPC_SSPx_Type *spi;
bogdanm 66:9c8f0e3462fb 58 };
bogdanm 66:9c8f0e3462fb 59
bogdanm 66:9c8f0e3462fb 60 #include "gpio_object.h"
bogdanm 66:9c8f0e3462fb 61
bogdanm 66:9c8f0e3462fb 62 #ifdef __cplusplus
bogdanm 66:9c8f0e3462fb 63 }
bogdanm 66:9c8f0e3462fb 64 #endif
bogdanm 66:9c8f0e3462fb 65
bogdanm 66:9c8f0e3462fb 66 #endif