Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: adi_console_menu platform_drivers
app/ad5770r_console_app.h@5:384997a66f58, 2021-07-23 (annotated)
- Committer:
- pmallick
- Date:
- Fri Jul 23 16:52:27 2021 +0530
- Revision:
- 5:384997a66f58
- Parent:
- 1:63c505e13da4
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.
* Indentation fixes.
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?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbradley | 1:63c505e13da4 | 1 | /*! |
mbradley | 1:63c505e13da4 | 2 | ***************************************************************************** |
mbradley | 1:63c505e13da4 | 3 | @file: ad5770r_console_app.h |
mbradley | 1:63c505e13da4 | 4 | |
mbradley | 1:63c505e13da4 | 5 | @brief: defines the console menu structure for the AD5770R example code |
mbradley | 1:63c505e13da4 | 6 | |
mbradley | 1:63c505e13da4 | 7 | @details: |
mbradley | 1:63c505e13da4 | 8 | ----------------------------------------------------------------------------- |
mbradley | 1:63c505e13da4 | 9 | * |
pmallick | 5:384997a66f58 | 10 | Copyright (c) 2020-2021 Analog Devices, Inc. All Rights Reserved. |
mbradley | 1:63c505e13da4 | 11 | |
mbradley | 1:63c505e13da4 | 12 | This software is proprietary to Analog Devices, Inc. and its licensors. |
mbradley | 1:63c505e13da4 | 13 | By using this software you agree to the terms of the associated |
mbradley | 1:63c505e13da4 | 14 | Analog Devices Software License Agreement. |
mbradley | 1:63c505e13da4 | 15 | ******************************************************************************/ |
mbradley | 1:63c505e13da4 | 16 | |
mbradley | 1:63c505e13da4 | 17 | #ifndef AD5770R_CONSOLE_APP_H_ |
mbradley | 1:63c505e13da4 | 18 | #define AD5770R_CONSOLE_APP_H_ |
mbradley | 1:63c505e13da4 | 19 | |
mbradley | 1:63c505e13da4 | 20 | #include <stdint.h> |
mbradley | 1:63c505e13da4 | 21 | |
mbradley | 1:63c505e13da4 | 22 | #include "adi_console_menu.h" |
mbradley | 1:63c505e13da4 | 23 | |
mbradley | 1:63c505e13da4 | 24 | /* #defines */ |
mbradley | 1:63c505e13da4 | 25 | |
mbradley | 1:63c505e13da4 | 26 | /* Public Declarations */ |
mbradley | 1:63c505e13da4 | 27 | int32_t ad5770r_app_initialize(void); |
mbradley | 1:63c505e13da4 | 28 | |
mbradley | 1:63c505e13da4 | 29 | extern console_menu ad5770r_main_menu; |
mbradley | 1:63c505e13da4 | 30 | |
mbradley | 1:63c505e13da4 | 31 | #endif /* AD5770R_CONSOLE_APP_H_ */ |
mbradley | 1:63c505e13da4 | 32 |