Example Program for EVAL-AD5592R

Dependencies:   adi_console_menu platform_drivers

Committer:
Kjansen
Date:
Tue Aug 03 12:18:40 2021 +0100
Revision:
4:9fa40df9bf93
Parent:
1:e84d8d51cd51
No-OS Adoption Changes:
* Updated the .lib files for adoption of no-OS repository as-is.
* Replaced platform_drivers.h with required header files.
* Updated the copyright year.

Mbed OS update changes:
1) Added the mbed_app.json file with custom parameters.
2) Updated the mbed-os version to 6.8.0

Updated the readme file.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
EndaKilgarriff 1:e84d8d51cd51 1 /*!
EndaKilgarriff 1:e84d8d51cd51 2 *****************************************************************************
EndaKilgarriff 1:e84d8d51cd51 3 * @file ad5592r_console_app.h
EndaKilgarriff 1:e84d8d51cd51 4 * @brief AD5592R console application interfaces
EndaKilgarriff 1:e84d8d51cd51 5 * @details:
EndaKilgarriff 1:e84d8d51cd51 6 -----------------------------------------------------------------------------
EndaKilgarriff 1:e84d8d51cd51 7 Copyright (c) 2020 Analog Devices, Inc.
EndaKilgarriff 1:e84d8d51cd51 8 All rights reserved.
EndaKilgarriff 1:e84d8d51cd51 9
EndaKilgarriff 1:e84d8d51cd51 10 This software is proprietary to Analog Devices, Inc. and its licensors.
EndaKilgarriff 1:e84d8d51cd51 11 By using this software you agree to the terms of the associated
EndaKilgarriff 1:e84d8d51cd51 12 Analog Devices Software License Agreement.
EndaKilgarriff 1:e84d8d51cd51 13 *****************************************************************************/
EndaKilgarriff 1:e84d8d51cd51 14
EndaKilgarriff 1:e84d8d51cd51 15 #ifndef AD5592R_CONSOLE_APP_H_
EndaKilgarriff 1:e84d8d51cd51 16 #define AD5592R_CONSOLE_APP_H_
EndaKilgarriff 1:e84d8d51cd51 17
EndaKilgarriff 1:e84d8d51cd51 18 #ifdef __cplusplus
EndaKilgarriff 1:e84d8d51cd51 19 extern "C"
EndaKilgarriff 1:e84d8d51cd51 20 {
EndaKilgarriff 1:e84d8d51cd51 21 #endif
EndaKilgarriff 1:e84d8d51cd51 22
EndaKilgarriff 1:e84d8d51cd51 23 /******************************************************************************/
EndaKilgarriff 1:e84d8d51cd51 24 /***************************** Include Files **********************************/
EndaKilgarriff 1:e84d8d51cd51 25 /******************************************************************************/
EndaKilgarriff 1:e84d8d51cd51 26 #include "adi_console_menu.h"
EndaKilgarriff 1:e84d8d51cd51 27
EndaKilgarriff 1:e84d8d51cd51 28 /******************************************************************************/
EndaKilgarriff 1:e84d8d51cd51 29 /***************************** Public Declarations ********************************/
EndaKilgarriff 1:e84d8d51cd51 30 /******************************************************************************/
EndaKilgarriff 1:e84d8d51cd51 31 int32_t ad5592r_app_initalization(void);
EndaKilgarriff 1:e84d8d51cd51 32 extern console_menu ad5592r_main_menu;
EndaKilgarriff 1:e84d8d51cd51 33
EndaKilgarriff 1:e84d8d51cd51 34 #ifdef __cplusplus
EndaKilgarriff 1:e84d8d51cd51 35 }
EndaKilgarriff 1:e84d8d51cd51 36 #endif
EndaKilgarriff 1:e84d8d51cd51 37
EndaKilgarriff 1:e84d8d51cd51 38 #endif /* AD5592R_CONSOLE_APP_H_ */