mbed library sources

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Thu Aug 20 10:45:13 2015 +0100
Revision:
613:bc40b8d2aec4
Parent:
337:6ed01c00b962
Synchronized with git revision 92ca8c7b60a283b6bb60eb65b183dac1599f0ade

Full URL: https://github.com/mbedmicro/mbed/commit/92ca8c7b60a283b6bb60eb65b183dac1599f0ade/

Nordic: update application start address in GCC linker script

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 337:6ed01c00b962 1 /* mbed Microcontroller Library
mbed_official 337:6ed01c00b962 2 * Copyright (c) 2006-2013 ARM Limited
mbed_official 337:6ed01c00b962 3 *
mbed_official 337:6ed01c00b962 4 * Licensed under the Apache License, Version 2.0 (the "License");
mbed_official 337:6ed01c00b962 5 * you may not use this file except in compliance with the License.
mbed_official 337:6ed01c00b962 6 * You may obtain a copy of the License at
mbed_official 337:6ed01c00b962 7 *
mbed_official 337:6ed01c00b962 8 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 337:6ed01c00b962 9 *
mbed_official 337:6ed01c00b962 10 * Unless required by applicable law or agreed to in writing, software
mbed_official 337:6ed01c00b962 11 * distributed under the License is distributed on an "AS IS" BASIS,
mbed_official 337:6ed01c00b962 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 337:6ed01c00b962 13 * See the License for the specific language governing permissions and
mbed_official 337:6ed01c00b962 14 * limitations under the License.
mbed_official 337:6ed01c00b962 15 */
mbed_official 337:6ed01c00b962 16 #ifndef MBED_PORTNAMES_H
mbed_official 337:6ed01c00b962 17 #define MBED_PORTNAMES_H
mbed_official 337:6ed01c00b962 18
mbed_official 337:6ed01c00b962 19 #ifdef __cplusplus
mbed_official 337:6ed01c00b962 20 extern "C" {
mbed_official 337:6ed01c00b962 21 #endif
mbed_official 337:6ed01c00b962 22
mbed_official 337:6ed01c00b962 23 typedef enum {
mbed_official 337:6ed01c00b962 24 Port0 = 0,
mbed_official 337:6ed01c00b962 25 } PortName;
mbed_official 337:6ed01c00b962 26
mbed_official 337:6ed01c00b962 27 #ifdef __cplusplus
mbed_official 337:6ed01c00b962 28 }
mbed_official 337:6ed01c00b962 29 #endif
mbed_official 337:6ed01c00b962 30 #endif