Birkbeck College Mobile and Ubiquitous Computing IoT Lab Exercise 2

Dependencies:   BLE_API_Native_blog

Committer:
gkroussos
Date:
Sat Mar 07 16:34:53 2015 +0000
Revision:
0:e8fdba0ed044
MUC IoT Workshop v1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gkroussos 0:e8fdba0ed044 1 /* mbed Microcontroller Library
gkroussos 0:e8fdba0ed044 2 * Copyright (c) 2013 Nordic Semiconductor
gkroussos 0:e8fdba0ed044 3 *
gkroussos 0:e8fdba0ed044 4 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:e8fdba0ed044 5 * you may not use this file except in compliance with the License.
gkroussos 0:e8fdba0ed044 6 * You may obtain a copy of the License at
gkroussos 0:e8fdba0ed044 7 *
gkroussos 0:e8fdba0ed044 8 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:e8fdba0ed044 9 *
gkroussos 0:e8fdba0ed044 10 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:e8fdba0ed044 11 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:e8fdba0ed044 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:e8fdba0ed044 13 * See the License for the specific language governing permissions and
gkroussos 0:e8fdba0ed044 14 * limitations under the License.
gkroussos 0:e8fdba0ed044 15 */
gkroussos 0:e8fdba0ed044 16 #ifndef MBED_PERIPHERALNAMES_H
gkroussos 0:e8fdba0ed044 17 #define MBED_PERIPHERALNAMES_H
gkroussos 0:e8fdba0ed044 18
gkroussos 0:e8fdba0ed044 19 #include "cmsis.h"
gkroussos 0:e8fdba0ed044 20
gkroussos 0:e8fdba0ed044 21 #ifdef __cplusplus
gkroussos 0:e8fdba0ed044 22 extern "C" {
gkroussos 0:e8fdba0ed044 23 #endif
gkroussos 0:e8fdba0ed044 24
gkroussos 0:e8fdba0ed044 25 #define STDIO_UART_TX TX_PIN_NUMBER
gkroussos 0:e8fdba0ed044 26 #define STDIO_UART_RX RX_PIN_NUMBER
gkroussos 0:e8fdba0ed044 27 #define STDIO_UART UART_0
gkroussos 0:e8fdba0ed044 28
gkroussos 0:e8fdba0ed044 29 typedef enum {
gkroussos 0:e8fdba0ed044 30 UART_0 = (int)NRF_UART0_BASE
gkroussos 0:e8fdba0ed044 31 } UARTName;
gkroussos 0:e8fdba0ed044 32
gkroussos 0:e8fdba0ed044 33
gkroussos 0:e8fdba0ed044 34 typedef enum {
gkroussos 0:e8fdba0ed044 35 SPI_0 = (int)NRF_SPI0_BASE,
gkroussos 0:e8fdba0ed044 36 SPI_1 = (int)NRF_SPI1_BASE,
gkroussos 0:e8fdba0ed044 37 SPIS = (int)NRF_SPIS1_BASE
gkroussos 0:e8fdba0ed044 38 } SPIName;
gkroussos 0:e8fdba0ed044 39
gkroussos 0:e8fdba0ed044 40 typedef enum {
gkroussos 0:e8fdba0ed044 41 PWM_1 = 0,
gkroussos 0:e8fdba0ed044 42 PWM_2
gkroussos 0:e8fdba0ed044 43 } PWMName;
gkroussos 0:e8fdba0ed044 44
gkroussos 0:e8fdba0ed044 45 typedef enum {
gkroussos 0:e8fdba0ed044 46 I2C_0 = (int)NRF_TWI0_BASE,
gkroussos 0:e8fdba0ed044 47 I2C_1 = (int)NRF_TWI1_BASE
gkroussos 0:e8fdba0ed044 48 } I2CName;
gkroussos 0:e8fdba0ed044 49
gkroussos 0:e8fdba0ed044 50 typedef enum {
gkroussos 0:e8fdba0ed044 51 ADC0_0 = (int)NRF_ADC_BASE
gkroussos 0:e8fdba0ed044 52 } ADCName;
gkroussos 0:e8fdba0ed044 53
gkroussos 0:e8fdba0ed044 54 #ifdef __cplusplus
gkroussos 0:e8fdba0ed044 55 }
gkroussos 0:e8fdba0ed044 56 #endif
gkroussos 0:e8fdba0ed044 57
gkroussos 0:e8fdba0ed044 58 #endif