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