Example program for EVAL-AD568x and EVAL-AD569x.

Dependencies:   adi_console_menu platform_drivers

EVAL-AD568x-AD569x

User Guide

This nanoDAC+ Mbed support software can be used as a starting point for developing your own firmware that targets Analog Devices nanoDAC+ products in your own environment. The software is configurable for your exact product within the nanoDAC+ family. See the user-guide for full instructions.

app/main.c

Committer:
Kjansen
Date:
2021-07-21
Revision:
9:cce35eca2ab0
Parent:
5:78877c8a97c8

File content as of revision 9:cce35eca2ab0:

/*!
 *****************************************************************************
  @file:  main.c

  @brief: main module for nanodac application interface

  @details: main module for nanodac application interface

 -----------------------------------------------------------------------------
 Copyright (c) 2020 Analog Devices, Inc.
 All rights reserved.

 This software is proprietary to Analog Devices, Inc. and its licensors.
 By using this software you agree to the terms of the associated
 Analog Devices Software License Agreement.
******************************************************************************/

/******************************************************************************/
/***************************** Include Files **********************************/
/******************************************************************************/

#include <stdio.h>
#include "nanodac_console_app.h"

/******************************************************************************/
/************************ Functions Definitions *******************************/
/******************************************************************************/

/* @brief  Main function
 *
 * @param  None
 *
 * @return SUCCESS(0), FAILURE (Negative)
 */
int main()
{
	int32_t setupResult;

	/* Initialize the nanodac application */
	if ((setupResult = nanodac_app_initialize()) < 0) {
		printf("Error setting up nanodac (%ld)\r\n\r\n", setupResult);
	}

	/* Infinite loop */
	while (1) {
		// display the console menu for the nanodac application
		adi_do_console_menu(&nanodac_main_menu);
	}

	// this line should not be reached
	return - 1;
}