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.
Dependents: CanNucleoF0_example
Fork of mbed-src by
targets/hal/TARGET_NXP/TARGET_LPC176X/TARGET_XBED_LPC1768/device.h@645:13c87cbecd54, 2016-01-07 (annotated)
- Committer:
- ptpaterson
- Date:
- Thu Jan 07 05:49:05 2016 +0000
- Revision:
- 645:13c87cbecd54
- Parent:
- 524:c0134becc221
corrected freeze on CAN_RECEIVE_IT
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_official | 524:c0134becc221 | 1 | /* mbed Microcontroller Library |
| mbed_official | 524:c0134becc221 | 2 | * Copyright (c) 2006-2013 ARM Limited |
| mbed_official | 524:c0134becc221 | 3 | * |
| mbed_official | 524:c0134becc221 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| mbed_official | 524:c0134becc221 | 5 | * you may not use this file except in compliance with the License. |
| mbed_official | 524:c0134becc221 | 6 | * You may obtain a copy of the License at |
| mbed_official | 524:c0134becc221 | 7 | * |
| mbed_official | 524:c0134becc221 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| mbed_official | 524:c0134becc221 | 9 | * |
| mbed_official | 524:c0134becc221 | 10 | * Unless required by applicable law or agreed to in writing, software |
| mbed_official | 524:c0134becc221 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| mbed_official | 524:c0134becc221 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| mbed_official | 524:c0134becc221 | 13 | * See the License for the specific language governing permissions and |
| mbed_official | 524:c0134becc221 | 14 | * limitations under the License. |
| mbed_official | 524:c0134becc221 | 15 | */ |
| mbed_official | 524:c0134becc221 | 16 | #ifndef MBED_DEVICE_H |
| mbed_official | 524:c0134becc221 | 17 | #define MBED_DEVICE_H |
| mbed_official | 524:c0134becc221 | 18 | |
| mbed_official | 524:c0134becc221 | 19 | #define DEVICE_PORTIN 1 |
| mbed_official | 524:c0134becc221 | 20 | #define DEVICE_PORTOUT 1 |
| mbed_official | 524:c0134becc221 | 21 | #define DEVICE_PORTINOUT 1 |
| mbed_official | 524:c0134becc221 | 22 | |
| mbed_official | 524:c0134becc221 | 23 | #define DEVICE_INTERRUPTIN 1 |
| mbed_official | 524:c0134becc221 | 24 | |
| mbed_official | 524:c0134becc221 | 25 | #define DEVICE_ANALOGIN 1 |
| mbed_official | 524:c0134becc221 | 26 | #define DEVICE_ANALOGOUT 1 |
| mbed_official | 524:c0134becc221 | 27 | |
| mbed_official | 524:c0134becc221 | 28 | #define DEVICE_SERIAL 1 |
| mbed_official | 524:c0134becc221 | 29 | #define DEVICE_SERIAL_FC 1 |
| mbed_official | 524:c0134becc221 | 30 | |
| mbed_official | 524:c0134becc221 | 31 | #define DEVICE_I2C 1 |
| mbed_official | 524:c0134becc221 | 32 | #define DEVICE_I2CSLAVE 1 |
| mbed_official | 524:c0134becc221 | 33 | |
| mbed_official | 524:c0134becc221 | 34 | #define DEVICE_SPI 1 |
| mbed_official | 524:c0134becc221 | 35 | #define DEVICE_SPISLAVE 1 |
| mbed_official | 524:c0134becc221 | 36 | |
| mbed_official | 524:c0134becc221 | 37 | #define DEVICE_CAN 1 |
| mbed_official | 524:c0134becc221 | 38 | |
| mbed_official | 524:c0134becc221 | 39 | #define DEVICE_RTC 1 |
| mbed_official | 524:c0134becc221 | 40 | |
| mbed_official | 524:c0134becc221 | 41 | #define DEVICE_ETHERNET 1 |
| mbed_official | 524:c0134becc221 | 42 | |
| mbed_official | 524:c0134becc221 | 43 | #define DEVICE_PWMOUT 1 |
| mbed_official | 524:c0134becc221 | 44 | |
| mbed_official | 524:c0134becc221 | 45 | #define DEVICE_SEMIHOST 1 |
| mbed_official | 524:c0134becc221 | 46 | #define DEVICE_LOCALFILESYSTEM 1 |
| mbed_official | 524:c0134becc221 | 47 | #define DEVICE_ID_LENGTH 32 |
| mbed_official | 524:c0134becc221 | 48 | #define DEVICE_MAC_OFFSET 20 |
| mbed_official | 524:c0134becc221 | 49 | |
| mbed_official | 524:c0134becc221 | 50 | #define DEVICE_SLEEP 1 |
| mbed_official | 524:c0134becc221 | 51 | |
| mbed_official | 524:c0134becc221 | 52 | #define DEVICE_DEBUG_AWARENESS 1 |
| mbed_official | 524:c0134becc221 | 53 | |
| mbed_official | 524:c0134becc221 | 54 | #define DEVICE_STDIO_MESSAGES 1 |
| mbed_official | 524:c0134becc221 | 55 | |
| mbed_official | 524:c0134becc221 | 56 | #define DEVICE_ERROR_PATTERN 1 |
| mbed_official | 524:c0134becc221 | 57 | |
| mbed_official | 524:c0134becc221 | 58 | #include "objects.h" |
| mbed_official | 524:c0134becc221 | 59 | |
| mbed_official | 524:c0134becc221 | 60 | #endif |
