mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
<>
Date:
Thu Feb 02 17:01:33 2017 +0000
Revision:
157:ff67d9f36b67
Child:
160:d5399cc887bb
This updates the lib to the mbed lib v135

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 157:ff67d9f36b67 1 /* mbed Microcontroller Library
<> 157:ff67d9f36b67 2 *******************************************************************************
<> 157:ff67d9f36b67 3 * Copyright (c) 2016, STMicroelectronics
<> 157:ff67d9f36b67 4 * All rights reserved.
<> 157:ff67d9f36b67 5 *
<> 157:ff67d9f36b67 6 * Redistribution and use in source and binary forms, with or without
<> 157:ff67d9f36b67 7 * modification, are permitted provided that the following conditions are met:
<> 157:ff67d9f36b67 8 *
<> 157:ff67d9f36b67 9 * 1. Redistributions of source code must retain the above copyright notice,
<> 157:ff67d9f36b67 10 * this list of conditions and the following disclaimer.
<> 157:ff67d9f36b67 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
<> 157:ff67d9f36b67 12 * this list of conditions and the following disclaimer in the documentation
<> 157:ff67d9f36b67 13 * and/or other materials provided with the distribution.
<> 157:ff67d9f36b67 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
<> 157:ff67d9f36b67 15 * may be used to endorse or promote products derived from this software
<> 157:ff67d9f36b67 16 * without specific prior written permission.
<> 157:ff67d9f36b67 17 *
<> 157:ff67d9f36b67 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 157:ff67d9f36b67 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 157:ff67d9f36b67 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
<> 157:ff67d9f36b67 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
<> 157:ff67d9f36b67 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
<> 157:ff67d9f36b67 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
<> 157:ff67d9f36b67 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
<> 157:ff67d9f36b67 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<> 157:ff67d9f36b67 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
<> 157:ff67d9f36b67 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<> 157:ff67d9f36b67 28 *******************************************************************************
<> 157:ff67d9f36b67 29 */
<> 157:ff67d9f36b67 30 #ifndef MBED_PINNAMESTYPES_H
<> 157:ff67d9f36b67 31 #define MBED_PINNAMESTYPES_H
<> 157:ff67d9f36b67 32
<> 157:ff67d9f36b67 33 #include "cmsis.h"
<> 157:ff67d9f36b67 34
<> 157:ff67d9f36b67 35 #ifdef __cplusplus
<> 157:ff67d9f36b67 36 extern "C" {
<> 157:ff67d9f36b67 37 #endif
<> 157:ff67d9f36b67 38
<> 157:ff67d9f36b67 39 #define STM_PIN_DATA(MODE, PUPD, AFNUM) ((int)(((MODE & 0x0F) << 0) |\
<> 157:ff67d9f36b67 40 ((PUPD & 0x07) << 4) |\
<> 157:ff67d9f36b67 41 ((AFNUM & 0x0F) << 7)))
<> 157:ff67d9f36b67 42
<> 157:ff67d9f36b67 43 #define STM_PIN_DATA_EXT(MODE, PUPD, AFNUM, CHANNEL, INVERTED) ((int)(((MODE & 0x0F) << 0) |\
<> 157:ff67d9f36b67 44 ((PUPD & 0x07) << 4) |\
<> 157:ff67d9f36b67 45 ((AFNUM & 0x0F) << 7) |\
<> 157:ff67d9f36b67 46 ((CHANNEL & 0x1F) << 11) |\
<> 157:ff67d9f36b67 47 ((INVERTED & 0x01) << 16)))
<> 157:ff67d9f36b67 48
<> 157:ff67d9f36b67 49 #define STM_PIN_MODE(X) (((X) >> 0) & 0x0F)
<> 157:ff67d9f36b67 50 #define STM_PIN_PUPD(X) (((X) >> 4) & 0x07)
<> 157:ff67d9f36b67 51 #define STM_PIN_AFNUM(X) (((X) >> 7) & 0x0F)
<> 157:ff67d9f36b67 52 #define STM_PIN_CHANNEL(X) (((X) >> 11) & 0x1F)
<> 157:ff67d9f36b67 53 #define STM_PIN_INVERTED(X) (((X) >> 16) & 0x01)
<> 157:ff67d9f36b67 54
<> 157:ff67d9f36b67 55 #define STM_MODE_INPUT (0)
<> 157:ff67d9f36b67 56 #define STM_MODE_OUTPUT_PP (1)
<> 157:ff67d9f36b67 57 #define STM_MODE_OUTPUT_OD (2)
<> 157:ff67d9f36b67 58 #define STM_MODE_AF_PP (3)
<> 157:ff67d9f36b67 59 #define STM_MODE_AF_OD (4)
<> 157:ff67d9f36b67 60 #define STM_MODE_ANALOG (5)
<> 157:ff67d9f36b67 61 #define STM_MODE_IT_RISING (6)
<> 157:ff67d9f36b67 62 #define STM_MODE_IT_FALLING (7)
<> 157:ff67d9f36b67 63 #define STM_MODE_IT_RISING_FALLING (8)
<> 157:ff67d9f36b67 64 #define STM_MODE_EVT_RISING (9)
<> 157:ff67d9f36b67 65 #define STM_MODE_EVT_FALLING (10)
<> 157:ff67d9f36b67 66 #define STM_MODE_EVT_RISING_FALLING (11)
<> 157:ff67d9f36b67 67 #define STM_MODE_IT_EVT_RESET (12)
<> 157:ff67d9f36b67 68 // The last mode is only valid for specific families, so we put it in the end
<> 157:ff67d9f36b67 69 #define STM_MODE_ANALOG_ADC_CONTROL (13)
<> 157:ff67d9f36b67 70
<> 157:ff67d9f36b67 71 // High nibble = port number (0=A, 1=B, 2=C, 3=D, 4=E, 5=F, 6=G, 7=H)
<> 157:ff67d9f36b67 72 // Low nibble = pin number
<> 157:ff67d9f36b67 73 #define STM_PORT(X) (((uint32_t)(X) >> 4) & 0xF)
<> 157:ff67d9f36b67 74 #define STM_PIN(X) ((uint32_t)(X) & 0xF)
<> 157:ff67d9f36b67 75
<> 157:ff67d9f36b67 76 typedef enum {
<> 157:ff67d9f36b67 77 PIN_INPUT,
<> 157:ff67d9f36b67 78 PIN_OUTPUT
<> 157:ff67d9f36b67 79 } PinDirection;
<> 157:ff67d9f36b67 80
<> 157:ff67d9f36b67 81 typedef enum {
<> 157:ff67d9f36b67 82 PullNone = 0,
<> 157:ff67d9f36b67 83 PullUp = 1,
<> 157:ff67d9f36b67 84 PullDown = 2,
<> 157:ff67d9f36b67 85 OpenDrain = 3,
<> 157:ff67d9f36b67 86 PullDefault = PullNone
<> 157:ff67d9f36b67 87 } PinMode;
<> 157:ff67d9f36b67 88
<> 157:ff67d9f36b67 89 #ifdef __cplusplus
<> 157:ff67d9f36b67 90 }
<> 157:ff67d9f36b67 91 #endif
<> 157:ff67d9f36b67 92
<> 157:ff67d9f36b67 93 #endif