Amit Gandhi / mbed-dev

Fork of mbed-dev by mbed official

Committer:
AnnaBridge
Date:
Wed Nov 08 13:50:44 2017 +0000
Revision:
178:d650f5d4c87a
Parent:
168:e84263d55307
This updates the lib to the mbed lib v 155

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 168:e84263d55307 1 /* mbed Microcontroller Library
AnnaBridge 168:e84263d55307 2 * Copyright (c) 2006-2013 ARM Limited
AnnaBridge 168:e84263d55307 3 *
AnnaBridge 168:e84263d55307 4 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 168:e84263d55307 5 * you may not use this file except in compliance with the License.
AnnaBridge 168:e84263d55307 6 * You may obtain a copy of the License at
AnnaBridge 168:e84263d55307 7 *
AnnaBridge 168:e84263d55307 8 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 168:e84263d55307 9 *
AnnaBridge 168:e84263d55307 10 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 168:e84263d55307 11 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 168:e84263d55307 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 168:e84263d55307 13 * See the License for the specific language governing permissions and
AnnaBridge 168:e84263d55307 14 * limitations under the License.
AnnaBridge 168:e84263d55307 15 */
AnnaBridge 168:e84263d55307 16 #ifndef MBED_PERIPHERALNAMES_H
AnnaBridge 168:e84263d55307 17 #define MBED_PERIPHERALNAMES_H
AnnaBridge 168:e84263d55307 18
AnnaBridge 168:e84263d55307 19 #include "cmsis.h"
AnnaBridge 168:e84263d55307 20
AnnaBridge 168:e84263d55307 21 #ifdef __cplusplus
AnnaBridge 168:e84263d55307 22 extern "C" {
AnnaBridge 168:e84263d55307 23 #endif
AnnaBridge 168:e84263d55307 24
AnnaBridge 168:e84263d55307 25 #define UART_3 3
AnnaBridge 168:e84263d55307 26 #define STDIO_UART_TX PB_0
AnnaBridge 168:e84263d55307 27 #define STDIO_UART_RX PB_1
AnnaBridge 168:e84263d55307 28 #define STDIO_UART UART_3
AnnaBridge 168:e84263d55307 29
AnnaBridge 168:e84263d55307 30
AnnaBridge 168:e84263d55307 31 typedef enum {
AnnaBridge 168:e84263d55307 32 DAC_0 = 0,
AnnaBridge 168:e84263d55307 33 DAC_1
AnnaBridge 168:e84263d55307 34 } DACName;
AnnaBridge 168:e84263d55307 35
AnnaBridge 168:e84263d55307 36
AnnaBridge 168:e84263d55307 37 #ifdef __cplusplus
AnnaBridge 168:e84263d55307 38 }
AnnaBridge 168:e84263d55307 39 #endif
AnnaBridge 168:e84263d55307 40
AnnaBridge 168:e84263d55307 41 #endif
AnnaBridge 168:e84263d55307 42