mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Mon Mar 10 11:30:07 2014 +0000
Revision:
113:65a335a675de
Parent:
105:e200768883d5
Child:
129:0182c99221bc
Synchronized with git revision 423ddcb86e83e2e0d599ca7106d436eb3c47e6dd

Full URL: https://github.com/mbedmicro/mbed/commit/423ddcb86e83e2e0d599ca7106d436eb3c47e6dd/

proposed change of gpio_api (new update pull request)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 76:aeb1df146756 1 /* mbed Microcontroller Library
mbed_official 76:aeb1df146756 2 *******************************************************************************
mbed_official 76:aeb1df146756 3 * Copyright (c) 2014, STMicroelectronics
mbed_official 76:aeb1df146756 4 * All rights reserved.
mbed_official 76:aeb1df146756 5 *
mbed_official 76:aeb1df146756 6 * Redistribution and use in source and binary forms, with or without
mbed_official 76:aeb1df146756 7 * modification, are permitted provided that the following conditions are met:
mbed_official 76:aeb1df146756 8 *
mbed_official 76:aeb1df146756 9 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 76:aeb1df146756 10 * this list of conditions and the following disclaimer.
mbed_official 76:aeb1df146756 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 76:aeb1df146756 12 * this list of conditions and the following disclaimer in the documentation
mbed_official 76:aeb1df146756 13 * and/or other materials provided with the distribution.
mbed_official 76:aeb1df146756 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 76:aeb1df146756 15 * may be used to endorse or promote products derived from this software
mbed_official 76:aeb1df146756 16 * without specific prior written permission.
mbed_official 76:aeb1df146756 17 *
mbed_official 76:aeb1df146756 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 76:aeb1df146756 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 76:aeb1df146756 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 76:aeb1df146756 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 76:aeb1df146756 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 76:aeb1df146756 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 76:aeb1df146756 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 76:aeb1df146756 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 76:aeb1df146756 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 76:aeb1df146756 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 76:aeb1df146756 28 *******************************************************************************
mbed_official 76:aeb1df146756 29 */
mbed_official 76:aeb1df146756 30 #ifndef MBED_PINNAMES_H
mbed_official 76:aeb1df146756 31 #define MBED_PINNAMES_H
mbed_official 76:aeb1df146756 32
mbed_official 76:aeb1df146756 33 #include "cmsis.h"
mbed_official 76:aeb1df146756 34
mbed_official 76:aeb1df146756 35 #ifdef __cplusplus
mbed_official 76:aeb1df146756 36 extern "C" {
mbed_official 76:aeb1df146756 37 #endif
mbed_official 76:aeb1df146756 38
mbed_official 76:aeb1df146756 39 // MODE (see GPIOMode_TypeDef structure)
mbed_official 76:aeb1df146756 40 // OTYPE (see GPIOOType_TypeDef structure)
mbed_official 76:aeb1df146756 41 // PUPD (see GPIOPuPd_TypeDef structure)
mbed_official 76:aeb1df146756 42 // AFNUM (see AF_mapping constant table, 0xFF is not used)
mbed_official 76:aeb1df146756 43 #define STM_PIN_DATA(MODE, OTYPE, PUPD, AFNUM) (((AFNUM)<<8)|((PUPD)<<4)|((OTYPE)<<2)|((MODE)<<0))
mbed_official 76:aeb1df146756 44 #define STM_PIN_MODE(X) (((X)>>0) & 0x3)
mbed_official 76:aeb1df146756 45 #define STM_PIN_OTYPE(X) (((X)>>2) & 0x1)
mbed_official 76:aeb1df146756 46 #define STM_PIN_PUPD(X) (((X)>>4) & 0x3)
mbed_official 76:aeb1df146756 47 #define STM_PIN_AFNUM(X) (((X)>>8) & 0xF)
mbed_official 76:aeb1df146756 48
mbed_official 76:aeb1df146756 49 // High nibble = port number (0=A, 1=B, 2=C, 3=D, 4=E, 5=F, 6=G, 7=H)
mbed_official 76:aeb1df146756 50 // Low nibble = pin number
mbed_official 76:aeb1df146756 51 #define STM_PORT(X) (((uint32_t)(X) >> 4) & 0xF)
mbed_official 76:aeb1df146756 52 #define STM_PIN(X) ((uint32_t)(X) & 0xF)
mbed_official 105:e200768883d5 53
mbed_official 76:aeb1df146756 54 typedef enum {
mbed_official 76:aeb1df146756 55 PIN_INPUT,
mbed_official 76:aeb1df146756 56 PIN_OUTPUT
mbed_official 76:aeb1df146756 57 } PinDirection;
mbed_official 76:aeb1df146756 58
mbed_official 76:aeb1df146756 59 typedef enum {
mbed_official 105:e200768883d5 60 PA_0 = 0x00,
mbed_official 105:e200768883d5 61 PA_1 = 0x01,
mbed_official 105:e200768883d5 62 PA_2 = 0x02,
mbed_official 105:e200768883d5 63 PA_3 = 0x03,
mbed_official 105:e200768883d5 64 PA_4 = 0x04,
mbed_official 105:e200768883d5 65 PA_5 = 0x05,
mbed_official 105:e200768883d5 66 PA_6 = 0x06,
mbed_official 105:e200768883d5 67 PA_7 = 0x07,
mbed_official 105:e200768883d5 68 PA_8 = 0x08,
mbed_official 105:e200768883d5 69 PA_9 = 0x09,
mbed_official 105:e200768883d5 70 PA_10 = 0x0A,
mbed_official 105:e200768883d5 71 PA_11 = 0x0B,
mbed_official 105:e200768883d5 72 PA_12 = 0x0C,
mbed_official 105:e200768883d5 73 PA_13 = 0x0D,
mbed_official 105:e200768883d5 74 PA_14 = 0x0E,
mbed_official 105:e200768883d5 75 PA_15 = 0x0F,
mbed_official 76:aeb1df146756 76
mbed_official 105:e200768883d5 77 PB_0 = 0x10,
mbed_official 105:e200768883d5 78 PB_1 = 0x11,
mbed_official 105:e200768883d5 79 PB_2 = 0x12,
mbed_official 105:e200768883d5 80 PB_3 = 0x13,
mbed_official 105:e200768883d5 81 PB_4 = 0x14,
mbed_official 105:e200768883d5 82 PB_5 = 0x15,
mbed_official 105:e200768883d5 83 PB_6 = 0x16,
mbed_official 105:e200768883d5 84 PB_7 = 0x17,
mbed_official 105:e200768883d5 85 PB_8 = 0x18,
mbed_official 105:e200768883d5 86 PB_9 = 0x19,
mbed_official 105:e200768883d5 87 PB_10 = 0x1A,
mbed_official 105:e200768883d5 88 PB_11 = 0x1B,
mbed_official 105:e200768883d5 89 PB_12 = 0x1C,
mbed_official 105:e200768883d5 90 PB_13 = 0x1D,
mbed_official 105:e200768883d5 91 PB_14 = 0x1E,
mbed_official 105:e200768883d5 92 PB_15 = 0x1F,
mbed_official 76:aeb1df146756 93
mbed_official 105:e200768883d5 94 PC_0 = 0x20,
mbed_official 105:e200768883d5 95 PC_1 = 0x21,
mbed_official 105:e200768883d5 96 PC_2 = 0x22,
mbed_official 105:e200768883d5 97 PC_3 = 0x23,
mbed_official 105:e200768883d5 98 PC_4 = 0x24,
mbed_official 105:e200768883d5 99 PC_5 = 0x25,
mbed_official 105:e200768883d5 100 PC_6 = 0x26,
mbed_official 105:e200768883d5 101 PC_7 = 0x27,
mbed_official 105:e200768883d5 102 PC_8 = 0x28,
mbed_official 105:e200768883d5 103 PC_9 = 0x29,
mbed_official 105:e200768883d5 104 PC_10 = 0x2A,
mbed_official 105:e200768883d5 105 PC_11 = 0x2B,
mbed_official 105:e200768883d5 106 PC_12 = 0x2C,
mbed_official 105:e200768883d5 107 PC_13 = 0x2D,
mbed_official 105:e200768883d5 108 PC_14 = 0x2E,
mbed_official 105:e200768883d5 109 PC_15 = 0x2F,
mbed_official 76:aeb1df146756 110
mbed_official 105:e200768883d5 111 PD_2 = 0x32,
mbed_official 76:aeb1df146756 112
mbed_official 105:e200768883d5 113 PH_0 = 0x70,
mbed_official 105:e200768883d5 114 PH_1 = 0x71,
mbed_official 76:aeb1df146756 115
mbed_official 105:e200768883d5 116 // Arduino connector namings
mbed_official 105:e200768883d5 117 A0 = PA_0,
mbed_official 105:e200768883d5 118 A1 = PA_1,
mbed_official 105:e200768883d5 119 A2 = PA_4,
mbed_official 105:e200768883d5 120 A3 = PB_0,
mbed_official 105:e200768883d5 121 A4 = PC_1,
mbed_official 105:e200768883d5 122 A5 = PC_0,
mbed_official 105:e200768883d5 123 D0 = PA_3,
mbed_official 105:e200768883d5 124 D1 = PA_2,
mbed_official 105:e200768883d5 125 D2 = PA_10,
mbed_official 105:e200768883d5 126 D3 = PB_3,
mbed_official 105:e200768883d5 127 D4 = PB_5,
mbed_official 105:e200768883d5 128 D5 = PB_4,
mbed_official 105:e200768883d5 129 D6 = PB_10,
mbed_official 105:e200768883d5 130 D7 = PA_8,
mbed_official 105:e200768883d5 131 D8 = PA_9,
mbed_official 105:e200768883d5 132 D9 = PC_7,
mbed_official 105:e200768883d5 133 D10 = PB_6,
mbed_official 105:e200768883d5 134 D11 = PA_7,
mbed_official 105:e200768883d5 135 D12 = PA_6,
mbed_official 105:e200768883d5 136 D13 = PA_5,
mbed_official 105:e200768883d5 137 D14 = PB_9,
mbed_official 105:e200768883d5 138 D15 = PB_8,
mbed_official 76:aeb1df146756 139
mbed_official 105:e200768883d5 140 // Generic signals namings
mbed_official 105:e200768883d5 141 LED1 = PA_5,
mbed_official 105:e200768883d5 142 LED2 = PA_5,
mbed_official 105:e200768883d5 143 LED3 = PA_5,
mbed_official 105:e200768883d5 144 LED4 = PA_5,
mbed_official 105:e200768883d5 145 USER_BUTTON = PC_13,
mbed_official 105:e200768883d5 146 USBTX = PA_2,
mbed_official 105:e200768883d5 147 USBRX = PA_3,
mbed_official 105:e200768883d5 148 I2C_SCL = PB_8,
mbed_official 105:e200768883d5 149 I2C_SDA = PB_9,
mbed_official 105:e200768883d5 150 SPI_MOSI = PA_7,
mbed_official 105:e200768883d5 151 SPI_MISO = PA_6,
mbed_official 105:e200768883d5 152 SPI_SCK = PA_5,
mbed_official 105:e200768883d5 153 SPI_CS = PB_6,
mbed_official 105:e200768883d5 154 PWM_OUT = PB_3,
mbed_official 105:e200768883d5 155
mbed_official 105:e200768883d5 156 // Not connected
mbed_official 105:e200768883d5 157 NC = (int)0xFFFFFFFF
mbed_official 76:aeb1df146756 158 } PinName;
mbed_official 76:aeb1df146756 159
mbed_official 76:aeb1df146756 160 typedef enum {
mbed_official 76:aeb1df146756 161 PullNone = 0,
mbed_official 76:aeb1df146756 162 PullUp = 1,
mbed_official 76:aeb1df146756 163 PullDown = 2,
mbed_official 113:65a335a675de 164 OpenDrain = 3,
mbed_official 113:65a335a675de 165 PullDefault = PullNone
mbed_official 76:aeb1df146756 166 } PinMode;
mbed_official 76:aeb1df146756 167
mbed_official 76:aeb1df146756 168 #ifdef __cplusplus
mbed_official 76:aeb1df146756 169 }
mbed_official 76:aeb1df146756 170 #endif
mbed_official 76:aeb1df146756 171
mbed_official 76:aeb1df146756 172 #endif