Binary version of Lancaster University's mbed branch, soon to be merged. The source lives here:https://developer.mbed.org/teams/Lancaster-University/code/mbed-src/

Dependents:   microbit-dal microbit-ble-open microbit-dal-eddystone microbit-dal ... more

Fork of mbed-lite-test by Lancaster University

Committer:
jamesadevine
Date:
Wed Jul 13 15:12:06 2016 +0100
Revision:
3:768173a57492
Parent:
0:e1a608bb55e8
further updates to mbed-dev-bin

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jamesadevine 0:e1a608bb55e8 1 /* mbed Microcontroller Library
jamesadevine 0:e1a608bb55e8 2 * Copyright (c) 2006-2013 ARM Limited
jamesadevine 0:e1a608bb55e8 3 *
jamesadevine 0:e1a608bb55e8 4 * Licensed under the Apache License, Version 2.0 (the "License");
jamesadevine 0:e1a608bb55e8 5 * you may not use this file except in compliance with the License.
jamesadevine 0:e1a608bb55e8 6 * You may obtain a copy of the License at
jamesadevine 0:e1a608bb55e8 7 *
jamesadevine 0:e1a608bb55e8 8 * http://www.apache.org/licenses/LICENSE-2.0
jamesadevine 0:e1a608bb55e8 9 *
jamesadevine 0:e1a608bb55e8 10 * Unless required by applicable law or agreed to in writing, software
jamesadevine 0:e1a608bb55e8 11 * distributed under the License is distributed on an "AS IS" BASIS,
jamesadevine 0:e1a608bb55e8 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jamesadevine 0:e1a608bb55e8 13 * See the License for the specific language governing permissions and
jamesadevine 0:e1a608bb55e8 14 * limitations under the License.
jamesadevine 0:e1a608bb55e8 15 */
jamesadevine 0:e1a608bb55e8 16 #ifndef MBED_TOOLCHAIN_H
jamesadevine 0:e1a608bb55e8 17 #define MBED_TOOLCHAIN_H
jamesadevine 0:e1a608bb55e8 18
jamesadevine 0:e1a608bb55e8 19 #if defined(TOOLCHAIN_ARM)
jamesadevine 0:e1a608bb55e8 20 #include <rt_sys.h>
jamesadevine 0:e1a608bb55e8 21 #endif
jamesadevine 0:e1a608bb55e8 22
jamesadevine 0:e1a608bb55e8 23 #ifndef FILEHANDLE
jamesadevine 0:e1a608bb55e8 24 typedef int FILEHANDLE;
jamesadevine 0:e1a608bb55e8 25 #endif
jamesadevine 0:e1a608bb55e8 26
jamesadevine 0:e1a608bb55e8 27 #if defined (__ICCARM__)
jamesadevine 0:e1a608bb55e8 28 # define WEAK __weak
jamesadevine 0:e1a608bb55e8 29 # define PACKED __packed
jamesadevine 0:e1a608bb55e8 30 #else
jamesadevine 0:e1a608bb55e8 31 # define WEAK __attribute__((weak))
jamesadevine 0:e1a608bb55e8 32 # define PACKED __attribute__((packed))
jamesadevine 0:e1a608bb55e8 33 #endif
jamesadevine 0:e1a608bb55e8 34
jamesadevine 0:e1a608bb55e8 35 #endif