Home Alert System
Dependencies: PWM_Tone_Library DHT
mbed/toolchain.h@3:78f223d34f36, 2019-03-05 (annotated)
- Committer:
- ethaderu
- Date:
- Tue Mar 05 02:34:44 2019 +0000
- Revision:
- 3:78f223d34f36
Publish 1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ethaderu | 3:78f223d34f36 | 1 | /* mbed Microcontroller Library |
ethaderu | 3:78f223d34f36 | 2 | * Copyright (c) 2006-2013 ARM Limited |
ethaderu | 3:78f223d34f36 | 3 | * |
ethaderu | 3:78f223d34f36 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
ethaderu | 3:78f223d34f36 | 5 | * you may not use this file except in compliance with the License. |
ethaderu | 3:78f223d34f36 | 6 | * You may obtain a copy of the License at |
ethaderu | 3:78f223d34f36 | 7 | * |
ethaderu | 3:78f223d34f36 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
ethaderu | 3:78f223d34f36 | 9 | * |
ethaderu | 3:78f223d34f36 | 10 | * Unless required by applicable law or agreed to in writing, software |
ethaderu | 3:78f223d34f36 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
ethaderu | 3:78f223d34f36 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
ethaderu | 3:78f223d34f36 | 13 | * See the License for the specific language governing permissions and |
ethaderu | 3:78f223d34f36 | 14 | * limitations under the License. |
ethaderu | 3:78f223d34f36 | 15 | */ |
ethaderu | 3:78f223d34f36 | 16 | #ifndef MBED_TOOLCHAIN_H |
ethaderu | 3:78f223d34f36 | 17 | #define MBED_TOOLCHAIN_H |
ethaderu | 3:78f223d34f36 | 18 | |
ethaderu | 3:78f223d34f36 | 19 | #if defined(TOOLCHAIN_ARM) |
ethaderu | 3:78f223d34f36 | 20 | #include <rt_sys.h> |
ethaderu | 3:78f223d34f36 | 21 | #endif |
ethaderu | 3:78f223d34f36 | 22 | |
ethaderu | 3:78f223d34f36 | 23 | #ifndef FILEHANDLE |
ethaderu | 3:78f223d34f36 | 24 | typedef int FILEHANDLE; |
ethaderu | 3:78f223d34f36 | 25 | #endif |
ethaderu | 3:78f223d34f36 | 26 | |
ethaderu | 3:78f223d34f36 | 27 | #if defined (__ICCARM__) |
ethaderu | 3:78f223d34f36 | 28 | # define WEAK __weak |
ethaderu | 3:78f223d34f36 | 29 | # define PACKED __packed |
ethaderu | 3:78f223d34f36 | 30 | #else |
ethaderu | 3:78f223d34f36 | 31 | # define WEAK __attribute__((weak)) |
ethaderu | 3:78f223d34f36 | 32 | # define PACKED __attribute__((packed)) |
ethaderu | 3:78f223d34f36 | 33 | #endif |
ethaderu | 3:78f223d34f36 | 34 | |
ethaderu | 3:78f223d34f36 | 35 | #endif |