Elijah Stanger-Jones / mbed-dev-f303
Committer:
elijahsj
Date:
Mon Nov 09 00:33:19 2020 -0500
Revision:
2:4364577b5ad8
Parent:
1:8a094db1347f
copied mbed library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elijahsj 1:8a094db1347f 1
elijahsj 1:8a094db1347f 2 /** \addtogroup platform */
elijahsj 1:8a094db1347f 3 /** @{*/
elijahsj 1:8a094db1347f 4 /* mbed Microcontroller Library
elijahsj 1:8a094db1347f 5 * Copyright (c) 2006-2013 ARM Limited
elijahsj 1:8a094db1347f 6 *
elijahsj 1:8a094db1347f 7 * Licensed under the Apache License, Version 2.0 (the "License");
elijahsj 1:8a094db1347f 8 * you may not use this file except in compliance with the License.
elijahsj 1:8a094db1347f 9 * You may obtain a copy of the License at
elijahsj 1:8a094db1347f 10 *
elijahsj 1:8a094db1347f 11 * http://www.apache.org/licenses/LICENSE-2.0
elijahsj 1:8a094db1347f 12 *
elijahsj 1:8a094db1347f 13 * Unless required by applicable law or agreed to in writing, software
elijahsj 1:8a094db1347f 14 * distributed under the License is distributed on an "AS IS" BASIS,
elijahsj 1:8a094db1347f 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
elijahsj 1:8a094db1347f 16 * See the License for the specific language governing permissions and
elijahsj 1:8a094db1347f 17 * limitations under the License.
elijahsj 1:8a094db1347f 18 */
elijahsj 1:8a094db1347f 19 #ifndef MBED_PLATFORM_H
elijahsj 1:8a094db1347f 20 #define MBED_PLATFORM_H
elijahsj 1:8a094db1347f 21
elijahsj 1:8a094db1347f 22 #include <cstddef>
elijahsj 1:8a094db1347f 23 #include <cstdlib>
elijahsj 1:8a094db1347f 24 #include <cstdio>
elijahsj 1:8a094db1347f 25 #include <cstring>
elijahsj 1:8a094db1347f 26
elijahsj 1:8a094db1347f 27 #include "platform/mbed_retarget.h"
elijahsj 1:8a094db1347f 28 #include "platform/mbed_toolchain.h"
elijahsj 1:8a094db1347f 29 #include "device.h"
elijahsj 1:8a094db1347f 30 #include "PinNames.h"
elijahsj 1:8a094db1347f 31 #include "PeripheralNames.h"
elijahsj 1:8a094db1347f 32
elijahsj 1:8a094db1347f 33 #endif
elijahsj 1:8a094db1347f 34
elijahsj 1:8a094db1347f 35 /** @}*/