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:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
82:6473597d706e
Release 114 of the mbed library

Changes:
- Atmel SAM - warnings fixes
- B96B F446VE - hw control flow addition
- Remove of GCC CW which was not active
- Remove GCC CS, not released anymore - deprecated

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_PERIPHERALNAMES_H
bogdanm 66:9c8f0e3462fb 17 #define MBED_PERIPHERALNAMES_H
bogdanm 66:9c8f0e3462fb 18
bogdanm 66:9c8f0e3462fb 19 #include "cmsis.h"
bogdanm 66:9c8f0e3462fb 20
bogdanm 66:9c8f0e3462fb 21 #ifdef __cplusplus
bogdanm 66:9c8f0e3462fb 22 extern "C" {
bogdanm 66:9c8f0e3462fb 23 #endif
bogdanm 66:9c8f0e3462fb 24
bogdanm 66:9c8f0e3462fb 25 typedef enum {
bogdanm 66:9c8f0e3462fb 26 UART_0 = (int)LPC_UART_BASE
bogdanm 66:9c8f0e3462fb 27 } UARTName;
bogdanm 66:9c8f0e3462fb 28
bogdanm 66:9c8f0e3462fb 29 typedef enum {
bogdanm 66:9c8f0e3462fb 30 I2C_0 = (int)LPC_I2C_BASE
bogdanm 66:9c8f0e3462fb 31 } I2CName;
bogdanm 66:9c8f0e3462fb 32
bogdanm 66:9c8f0e3462fb 33 typedef enum {
bogdanm 66:9c8f0e3462fb 34 ADC0_0 = 0,
bogdanm 66:9c8f0e3462fb 35 ADC0_1,
bogdanm 66:9c8f0e3462fb 36 ADC0_2,
bogdanm 66:9c8f0e3462fb 37 ADC0_3,
bogdanm 66:9c8f0e3462fb 38 ADC0_4,
bogdanm 66:9c8f0e3462fb 39 ADC0_5,
bogdanm 66:9c8f0e3462fb 40 ADC0_6,
bogdanm 66:9c8f0e3462fb 41 ADC0_7
bogdanm 66:9c8f0e3462fb 42 } ADCName;
bogdanm 66:9c8f0e3462fb 43
bogdanm 66:9c8f0e3462fb 44 typedef enum {
bogdanm 66:9c8f0e3462fb 45 SPI_0 = (int)LPC_SSP0_BASE,
bogdanm 66:9c8f0e3462fb 46 SPI_1 = (int)LPC_SSP1_BASE
bogdanm 66:9c8f0e3462fb 47 } SPIName;
bogdanm 66:9c8f0e3462fb 48
bogdanm 66:9c8f0e3462fb 49 typedef enum {
bogdanm 66:9c8f0e3462fb 50 PWM_1 = 0,
bogdanm 66:9c8f0e3462fb 51 PWM_2,
bogdanm 66:9c8f0e3462fb 52 PWM_3,
bogdanm 66:9c8f0e3462fb 53 PWM_4,
bogdanm 67:a9913a65894f 54 PWM_5
bogdanm 66:9c8f0e3462fb 55 } PWMName;
bogdanm 66:9c8f0e3462fb 56
bogdanm 66:9c8f0e3462fb 57 #define STDIO_UART_TX USBTX
bogdanm 66:9c8f0e3462fb 58 #define STDIO_UART_RX USBRX
bogdanm 66:9c8f0e3462fb 59 #define STDIO_UART UART_0
bogdanm 66:9c8f0e3462fb 60
bogdanm 66:9c8f0e3462fb 61 #ifdef __cplusplus
bogdanm 66:9c8f0e3462fb 62 }
bogdanm 66:9c8f0e3462fb 63 #endif
bogdanm 66:9c8f0e3462fb 64
bogdanm 66:9c8f0e3462fb 65 #endif