mbed library sources change for ST sensors and ST BLE
Fork of mbed-src by
targets/hal/TARGET_NXP/TARGET_LPC11U6X/device.h@174:8bb9f3a33240, 2014-04-29 (annotated)
- Committer:
- mbed_official
- Date:
- Tue Apr 29 11:15:07 2014 +0100
- Revision:
- 174:8bb9f3a33240
- Child:
- 186:2e805bf06ee4
Synchronized with git revision 5bf985ebc651a2c31cefabd9d62c51dc465ef60a
Full URL: https://github.com/mbedmicro/mbed/commit/5bf985ebc651a2c31cefabd9d62c51dc465ef60a/
[NUCLEO_L152RE/F103RB] Add LSE configuration for RTC
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 174:8bb9f3a33240 | 1 | /* mbed Microcontroller Library |
mbed_official | 174:8bb9f3a33240 | 2 | * Copyright (c) 2006-2014 ARM Limited |
mbed_official | 174:8bb9f3a33240 | 3 | * |
mbed_official | 174:8bb9f3a33240 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
mbed_official | 174:8bb9f3a33240 | 5 | * you may not use this file except in compliance with the License. |
mbed_official | 174:8bb9f3a33240 | 6 | * You may obtain a copy of the License at |
mbed_official | 174:8bb9f3a33240 | 7 | * |
mbed_official | 174:8bb9f3a33240 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
mbed_official | 174:8bb9f3a33240 | 9 | * |
mbed_official | 174:8bb9f3a33240 | 10 | * Unless required by applicable law or agreed to in writing, software |
mbed_official | 174:8bb9f3a33240 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
mbed_official | 174:8bb9f3a33240 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
mbed_official | 174:8bb9f3a33240 | 13 | * See the License for the specific language governing permissions and |
mbed_official | 174:8bb9f3a33240 | 14 | * limitations under the License. |
mbed_official | 174:8bb9f3a33240 | 15 | */ |
mbed_official | 174:8bb9f3a33240 | 16 | #ifndef MBED_DEVICE_H |
mbed_official | 174:8bb9f3a33240 | 17 | #define MBED_DEVICE_H |
mbed_official | 174:8bb9f3a33240 | 18 | |
mbed_official | 174:8bb9f3a33240 | 19 | #define DEVICE_PORTIN 0 |
mbed_official | 174:8bb9f3a33240 | 20 | #define DEVICE_PORTOUT 0 |
mbed_official | 174:8bb9f3a33240 | 21 | #define DEVICE_PORTINOUT 0 |
mbed_official | 174:8bb9f3a33240 | 22 | |
mbed_official | 174:8bb9f3a33240 | 23 | #define DEVICE_INTERRUPTIN 1 |
mbed_official | 174:8bb9f3a33240 | 24 | |
mbed_official | 174:8bb9f3a33240 | 25 | #define DEVICE_ANALOGIN 0 |
mbed_official | 174:8bb9f3a33240 | 26 | #define DEVICE_ANALOGOUT 0 |
mbed_official | 174:8bb9f3a33240 | 27 | |
mbed_official | 174:8bb9f3a33240 | 28 | #define DEVICE_SERIAL 1 |
mbed_official | 174:8bb9f3a33240 | 29 | #define DEVICE_SERIAL_FC 1 |
mbed_official | 174:8bb9f3a33240 | 30 | |
mbed_official | 174:8bb9f3a33240 | 31 | #define DEVICE_I2C 1 |
mbed_official | 174:8bb9f3a33240 | 32 | #define DEVICE_I2CSLAVE 0 |
mbed_official | 174:8bb9f3a33240 | 33 | |
mbed_official | 174:8bb9f3a33240 | 34 | #define DEVICE_SPI 1 |
mbed_official | 174:8bb9f3a33240 | 35 | #define DEVICE_SPISLAVE 0 |
mbed_official | 174:8bb9f3a33240 | 36 | |
mbed_official | 174:8bb9f3a33240 | 37 | #define DEVICE_CAN 0 |
mbed_official | 174:8bb9f3a33240 | 38 | |
mbed_official | 174:8bb9f3a33240 | 39 | #define DEVICE_RTC 0 |
mbed_official | 174:8bb9f3a33240 | 40 | |
mbed_official | 174:8bb9f3a33240 | 41 | #define DEVICE_ETHERNET 0 |
mbed_official | 174:8bb9f3a33240 | 42 | |
mbed_official | 174:8bb9f3a33240 | 43 | #define DEVICE_PWMOUT 0 |
mbed_official | 174:8bb9f3a33240 | 44 | |
mbed_official | 174:8bb9f3a33240 | 45 | #define DEVICE_SEMIHOST 0 |
mbed_official | 174:8bb9f3a33240 | 46 | #define DEVICE_LOCALFILESYSTEM 0 |
mbed_official | 174:8bb9f3a33240 | 47 | |
mbed_official | 174:8bb9f3a33240 | 48 | #define DEVICE_SLEEP 0 |
mbed_official | 174:8bb9f3a33240 | 49 | |
mbed_official | 174:8bb9f3a33240 | 50 | #define DEVICE_DEBUG_AWARENESS 0 |
mbed_official | 174:8bb9f3a33240 | 51 | |
mbed_official | 174:8bb9f3a33240 | 52 | #define DEVICE_STDIO_MESSAGES 0 |
mbed_official | 174:8bb9f3a33240 | 53 | |
mbed_official | 174:8bb9f3a33240 | 54 | #define DEVICE_ERROR_RED 1 |
mbed_official | 174:8bb9f3a33240 | 55 | |
mbed_official | 174:8bb9f3a33240 | 56 | #include "objects.h" |
mbed_official | 174:8bb9f3a33240 | 57 | |
mbed_official | 174:8bb9f3a33240 | 58 | #endif |