my fork

Dependents:   Nucleo_blueNRG

Fork of mbed by mbed official

Committer:
filartrix
Date:
Wed Apr 08 14:12:53 2015 +0000
Revision:
97:4298809c7c9e
Parent:
90:cb3d968589d8
First reale BlueNRG module for nucleo 401 board

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /* mbed Microcontroller Library
Kojto 90:cb3d968589d8 2 * Copyright (c) 2006-2013 ARM Limited
Kojto 90:cb3d968589d8 3 *
Kojto 90:cb3d968589d8 4 * Licensed under the Apache License, Version 2.0 (the "License");
Kojto 90:cb3d968589d8 5 * you may not use this file except in compliance with the License.
Kojto 90:cb3d968589d8 6 * You may obtain a copy of the License at
Kojto 90:cb3d968589d8 7 *
Kojto 90:cb3d968589d8 8 * http://www.apache.org/licenses/LICENSE-2.0
Kojto 90:cb3d968589d8 9 *
Kojto 90:cb3d968589d8 10 * Unless required by applicable law or agreed to in writing, software
Kojto 90:cb3d968589d8 11 * distributed under the License is distributed on an "AS IS" BASIS,
Kojto 90:cb3d968589d8 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Kojto 90:cb3d968589d8 13 * See the License for the specific language governing permissions and
Kojto 90:cb3d968589d8 14 * limitations under the License.
Kojto 90:cb3d968589d8 15 */
Kojto 90:cb3d968589d8 16
Kojto 90:cb3d968589d8 17 #ifndef MBED_PERIPHERALPINS_H
Kojto 90:cb3d968589d8 18 #define MBED_PERIPHERALPINS_H
Kojto 90:cb3d968589d8 19
Kojto 90:cb3d968589d8 20 #include "pinmap.h"
Kojto 90:cb3d968589d8 21 #include "PeripheralNames.h"
Kojto 90:cb3d968589d8 22
Kojto 90:cb3d968589d8 23 /************RTC***************/
Kojto 90:cb3d968589d8 24 extern const PinMap PinMap_RTC[];
Kojto 90:cb3d968589d8 25
Kojto 90:cb3d968589d8 26 /************ADC***************/
Kojto 90:cb3d968589d8 27 extern const PinMap PinMap_ADC[];
Kojto 90:cb3d968589d8 28
Kojto 90:cb3d968589d8 29 /************DAC***************/
Kojto 90:cb3d968589d8 30 extern const PinMap PinMap_DAC[];
Kojto 90:cb3d968589d8 31
Kojto 90:cb3d968589d8 32 /************I2C***************/
Kojto 90:cb3d968589d8 33 extern const PinMap PinMap_I2C_SDA[];
Kojto 90:cb3d968589d8 34 extern const PinMap PinMap_I2C_SCL[];
Kojto 90:cb3d968589d8 35
Kojto 90:cb3d968589d8 36 /************UART***************/
Kojto 90:cb3d968589d8 37 extern const PinMap PinMap_UART_TX[];
Kojto 90:cb3d968589d8 38 extern const PinMap PinMap_UART_RX[];
Kojto 90:cb3d968589d8 39
Kojto 90:cb3d968589d8 40 /************SPI***************/
Kojto 90:cb3d968589d8 41 extern const PinMap PinMap_SPI_SCLK[];
Kojto 90:cb3d968589d8 42 extern const PinMap PinMap_SPI_MOSI[];
Kojto 90:cb3d968589d8 43 extern const PinMap PinMap_SPI_MISO[];
Kojto 90:cb3d968589d8 44 extern const PinMap PinMap_SPI_SSEL[];
Kojto 90:cb3d968589d8 45
Kojto 90:cb3d968589d8 46 /************PWM***************/
Kojto 90:cb3d968589d8 47 extern const PinMap PinMap_PWM[];
Kojto 90:cb3d968589d8 48
Kojto 90:cb3d968589d8 49 #endif