
/**************************************************************************//**
 *
 * Copyright (C) 2014-2020 Infineon Technologies AG. All rights reserved.
 *
 * Infineon Technologies AG (Infineon) is supplying this software for use with
 * Infineon's microcontrollers.
 * This file can be freely distributed within development tools that are
 * supporting such microcontrollers.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED
 * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
 * INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL,
 * OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
 *
********************************************************************************
**                                                                            **
**                                                                            **
** PLATFORM : Infineon <XMC4000/1000 series>                                  **
**                                                                            **
** COMPILER : Compiler Independent                                            **
**                                                                            **
** MODIFICATION DATE : Dec 27, 2014                                           **
**                                                                            **
*******************************************************************************/

/**
 * @file  DAVE_common.h
 *
 * @brief This file contains all app related public data structures,enums and function
 *        prototypes
 *
 * Revision History
 * 27 Dec 2014 v0.1.0 Initial Version
 *
 */

#ifndef _DAVE_COMMON_H_
#define _DAVE_COMMON_H_

/*******************************************************************************
**                      @Project Includes                                     **
*******************************************************************************/

/*******************************************************************************
**                      Global data structures                                **
*******************************************************************************/
typedef struct DAVE_APP_VERSION
{
  uint8_t major;
  uint8_t minor;
  uint8_t patch;
} DAVE_APP_VERSION_t;

/*******************************************************************************
**                      @Prototypes Of Global Functions                       **
*******************************************************************************/

#endif  /** ifndef _DAVE_COMMON_H_ */

