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:
bogdanm
Date:
Thu Dec 19 15:51:14 2013 +0200
Revision:
75:dc225afb6914
Parent:
74:a842253909c9
Child:
76:824293ae5e43
Release 75 of the mbed library

Main changes:

- added UART flow control API and implementation for LPC1768 and LPC812
- NUCLEO_F103RB and KL46Z fixes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 73:1efda918f0ba 1 /* mbed Microcontroller Library
bogdanm 73:1efda918f0ba 2 * Copyright (c) 2006-2013 ARM Limited
bogdanm 73:1efda918f0ba 3 *
bogdanm 73:1efda918f0ba 4 * Licensed under the Apache License, Version 2.0 (the "License");
bogdanm 73:1efda918f0ba 5 * you may not use this file except in compliance with the License.
bogdanm 73:1efda918f0ba 6 * You may obtain a copy of the License at
bogdanm 73:1efda918f0ba 7 *
bogdanm 73:1efda918f0ba 8 * http://www.apache.org/licenses/LICENSE-2.0
bogdanm 73:1efda918f0ba 9 *
bogdanm 73:1efda918f0ba 10 * Unless required by applicable law or agreed to in writing, software
bogdanm 73:1efda918f0ba 11 * distributed under the License is distributed on an "AS IS" BASIS,
bogdanm 73:1efda918f0ba 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
bogdanm 73:1efda918f0ba 13 * See the License for the specific language governing permissions and
bogdanm 73:1efda918f0ba 14 * limitations under the License.
bogdanm 73:1efda918f0ba 15 */
bogdanm 73:1efda918f0ba 16 #ifndef MBED_OBJECTS_H
bogdanm 73:1efda918f0ba 17 #define MBED_OBJECTS_H
bogdanm 73:1efda918f0ba 18
bogdanm 73:1efda918f0ba 19 #include "cmsis.h"
bogdanm 73:1efda918f0ba 20 #include "PortNames.h"
bogdanm 73:1efda918f0ba 21 #include "PeripheralNames.h"
bogdanm 73:1efda918f0ba 22 #include "PinNames.h"
bogdanm 73:1efda918f0ba 23
bogdanm 73:1efda918f0ba 24 #ifdef __cplusplus
bogdanm 73:1efda918f0ba 25 extern "C" {
bogdanm 73:1efda918f0ba 26 #endif
bogdanm 73:1efda918f0ba 27
bogdanm 73:1efda918f0ba 28 struct gpio_irq_s {
bogdanm 73:1efda918f0ba 29 uint32_t ch;
bogdanm 75:dc225afb6914 30 IRQn_Type irq_n;
bogdanm 75:dc225afb6914 31 uint32_t event; // 0=none, 1=rise, 2=fall, 3=rise+fall
bogdanm 73:1efda918f0ba 32 };
bogdanm 73:1efda918f0ba 33
bogdanm 73:1efda918f0ba 34 struct port_s {
bogdanm 73:1efda918f0ba 35 PortName port;
bogdanm 73:1efda918f0ba 36 uint32_t mask;
bogdanm 73:1efda918f0ba 37 PinDirection direction;
bogdanm 73:1efda918f0ba 38 __IO uint32_t *reg_in;
bogdanm 73:1efda918f0ba 39 __IO uint32_t *reg_out;
bogdanm 73:1efda918f0ba 40 };
bogdanm 73:1efda918f0ba 41
bogdanm 73:1efda918f0ba 42 struct analogin_s {
bogdanm 73:1efda918f0ba 43 ADCName adc;
bogdanm 73:1efda918f0ba 44 PinName pin;
bogdanm 73:1efda918f0ba 45 };
bogdanm 73:1efda918f0ba 46
bogdanm 73:1efda918f0ba 47 struct serial_s {
bogdanm 73:1efda918f0ba 48 UARTName uart;
bogdanm 73:1efda918f0ba 49 int index; // Used by irq
bogdanm 73:1efda918f0ba 50 uint32_t baudrate;
bogdanm 73:1efda918f0ba 51 uint32_t databits;
bogdanm 73:1efda918f0ba 52 uint32_t stopbits;
bogdanm 73:1efda918f0ba 53 uint32_t parity;
bogdanm 73:1efda918f0ba 54 };
bogdanm 73:1efda918f0ba 55
bogdanm 73:1efda918f0ba 56 struct spi_s {
bogdanm 73:1efda918f0ba 57 SPIName spi;
bogdanm 73:1efda918f0ba 58 uint32_t bits;
bogdanm 73:1efda918f0ba 59 uint32_t cpol;
bogdanm 73:1efda918f0ba 60 uint32_t cpha;
bogdanm 73:1efda918f0ba 61 uint32_t mode;
bogdanm 73:1efda918f0ba 62 uint32_t nss;
bogdanm 73:1efda918f0ba 63 uint32_t br_presc;
bogdanm 73:1efda918f0ba 64 };
bogdanm 73:1efda918f0ba 65
bogdanm 73:1efda918f0ba 66 struct i2c_s {
bogdanm 73:1efda918f0ba 67 I2CName i2c;
bogdanm 73:1efda918f0ba 68 };
bogdanm 73:1efda918f0ba 69
bogdanm 73:1efda918f0ba 70 struct pwmout_s {
bogdanm 73:1efda918f0ba 71 PWMName pwm;
bogdanm 73:1efda918f0ba 72 PinName pin;
bogdanm 73:1efda918f0ba 73 uint32_t period;
bogdanm 73:1efda918f0ba 74 uint32_t pulse;
bogdanm 73:1efda918f0ba 75 };
bogdanm 73:1efda918f0ba 76
bogdanm 73:1efda918f0ba 77 #include "gpio_object.h"
bogdanm 73:1efda918f0ba 78
bogdanm 73:1efda918f0ba 79 #ifdef __cplusplus
bogdanm 73:1efda918f0ba 80 }
bogdanm 73:1efda918f0ba 81 #endif
bogdanm 73:1efda918f0ba 82
bogdanm 73:1efda918f0ba 83 #endif