Platform drivers for Mbed.

Dependents:   EVAL-CN0535-FMCZ EVAL-CN0535-FMCZ EVAL-AD568x-AD569x EVAL-AD7606 ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers platform_support.h Source File

platform_support.h

Go to the documentation of this file.
00001 /***************************************************************************//**
00002  *   @file     platform_support.h
00003  *   @brief:   support functions and declarations for selected platform
00004  *   @details: This is a platform specific file that supports functionality
00005  *             required from application generic file. This file should be
00006  *             modified according to platform that you are working with.
00007 ********************************************************************************
00008  * Copyright (c) 2019 - 2021 Analog Devices, Inc.
00009  * All rights reserved.
00010  *
00011  * This software is proprietary to Analog Devices, Inc. and its licensors.
00012  * By using this software you agree to the terms of the associated
00013  * Analog Devices Software License Agreement.
00014 *******************************************************************************/
00015 
00016 #ifndef PLATFORM_SUPPORT_H_
00017 #define PLATFORM_SUPPORT_H_
00018 
00019 
00020 /******************************************************************************/
00021 /***************************** Include Files **********************************/
00022 /******************************************************************************/
00023 #include <stdio.h>
00024 
00025 /******************************************************************************/
00026 /********************** Macros and Constants Definitions **********************/
00027 /******************************************************************************/
00028 
00029 /******************************************************************************/
00030 /********************** Variables and User defined data types *****************/
00031 /******************************************************************************/
00032 
00033 /******************************************************************************/
00034 /************************ Functions Declarations ******************************/
00035 /******************************************************************************/
00036 
00037 char getchar_noblock(void);
00038 
00039 #endif /* PLATFORM_SUPPORT_H_ */