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