Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
TARGET_NUCLEO_F103RB/device.h@75:dc225afb6914, 2013-12-19 (annotated)
- Committer:
- bogdanm
- Date:
- Thu Dec 19 15:51:14 2013 +0200
- Revision:
- 75:dc225afb6914
- Parent:
- 74:a842253909c9
- Child:
- 76:824293ae5e43
Release 75 of the mbed library
Main changes:
- added UART flow control API and implementation for LPC1768 and LPC812
- NUCLEO_F103RB and KL46Z fixes
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 73:1efda918f0ba | 1 | /* mbed Microcontroller Library |
bogdanm | 73:1efda918f0ba | 2 | * Copyright (c) 2006-2013 ARM Limited |
bogdanm | 73:1efda918f0ba | 3 | * |
bogdanm | 73:1efda918f0ba | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
bogdanm | 73:1efda918f0ba | 5 | * you may not use this file except in compliance with the License. |
bogdanm | 73:1efda918f0ba | 6 | * You may obtain a copy of the License at |
bogdanm | 73:1efda918f0ba | 7 | * |
bogdanm | 73:1efda918f0ba | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
bogdanm | 73:1efda918f0ba | 9 | * |
bogdanm | 73:1efda918f0ba | 10 | * Unless required by applicable law or agreed to in writing, software |
bogdanm | 73:1efda918f0ba | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
bogdanm | 73:1efda918f0ba | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
bogdanm | 73:1efda918f0ba | 13 | * See the License for the specific language governing permissions and |
bogdanm | 73:1efda918f0ba | 14 | * limitations under the License. |
bogdanm | 73:1efda918f0ba | 15 | */ |
bogdanm | 73:1efda918f0ba | 16 | #ifndef MBED_DEVICE_H |
bogdanm | 73:1efda918f0ba | 17 | #define MBED_DEVICE_H |
bogdanm | 73:1efda918f0ba | 18 | |
bogdanm | 73:1efda918f0ba | 19 | #define DEVICE_PORTIN 1 |
bogdanm | 73:1efda918f0ba | 20 | #define DEVICE_PORTOUT 1 |
bogdanm | 73:1efda918f0ba | 21 | #define DEVICE_PORTINOUT 1 |
bogdanm | 73:1efda918f0ba | 22 | |
bogdanm | 75:dc225afb6914 | 23 | #define DEVICE_INTERRUPTIN 1 |
bogdanm | 73:1efda918f0ba | 24 | |
bogdanm | 73:1efda918f0ba | 25 | #define DEVICE_ANALOGIN 1 |
bogdanm | 73:1efda918f0ba | 26 | #define DEVICE_ANALOGOUT 0 |
bogdanm | 73:1efda918f0ba | 27 | |
bogdanm | 73:1efda918f0ba | 28 | #define DEVICE_SERIAL 1 |
bogdanm | 73:1efda918f0ba | 29 | |
bogdanm | 74:a842253909c9 | 30 | #define DEVICE_I2C 1 |
bogdanm | 73:1efda918f0ba | 31 | #define DEVICE_I2CSLAVE 0 |
bogdanm | 73:1efda918f0ba | 32 | |
bogdanm | 73:1efda918f0ba | 33 | #define DEVICE_SPI 1 |
bogdanm | 73:1efda918f0ba | 34 | #define DEVICE_SPISLAVE 0 |
bogdanm | 73:1efda918f0ba | 35 | |
bogdanm | 75:dc225afb6914 | 36 | #define DEVICE_RTC 1 |
bogdanm | 73:1efda918f0ba | 37 | |
bogdanm | 73:1efda918f0ba | 38 | #define DEVICE_PWMOUT 1 |
bogdanm | 73:1efda918f0ba | 39 | |
bogdanm | 75:dc225afb6914 | 40 | #define DEVICE_SLEEP 1 |
bogdanm | 75:dc225afb6914 | 41 | |
bogdanm | 73:1efda918f0ba | 42 | //======================================= |
bogdanm | 73:1efda918f0ba | 43 | |
bogdanm | 73:1efda918f0ba | 44 | #define DEVICE_SEMIHOST 0 |
bogdanm | 73:1efda918f0ba | 45 | #define DEVICE_LOCALFILESYSTEM 0 |
bogdanm | 73:1efda918f0ba | 46 | #define DEVICE_ID_LENGTH 24 |
bogdanm | 73:1efda918f0ba | 47 | |
bogdanm | 73:1efda918f0ba | 48 | #define DEVICE_DEBUG_AWARENESS 0 |
bogdanm | 73:1efda918f0ba | 49 | |
bogdanm | 73:1efda918f0ba | 50 | #define DEVICE_STDIO_MESSAGES 1 |
bogdanm | 73:1efda918f0ba | 51 | |
bogdanm | 73:1efda918f0ba | 52 | //#define DEVICE_ERROR_RED 0 |
bogdanm | 73:1efda918f0ba | 53 | |
bogdanm | 73:1efda918f0ba | 54 | #include "objects.h" |
bogdanm | 73:1efda918f0ba | 55 | |
bogdanm | 73:1efda918f0ba | 56 | #endif |