/**********************************************************************//** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file DGCommon.h * * @date 27-Feb-2019 * @author S. Nash * * @brief Header file for common definitions, types and macros for DG firmware. * **************************************************************************/ #ifndef __DG_COMMON_H__ #define __DG_COMMON_H__ #include "hal_stdtypes.h" // ********** version ********** #define DG_VERSION_MAJOR 0 #define DG_VERSION_MINOR 3 #define DG_VERSION_BUILD 0 // ********** build switches ********** #ifndef _VECTORCAST_ // #define RM46_EVAL_BOARD_TARGET 1 // #define SIMULATE_UI 1 #ifdef DEBUG_ENABLED #include #include #endif #endif #include "Common.h" /** * @defgroup CommonDGHeader CommonDGHeader * @brief Provides commonly used definitions and macros for DG firmware. * * @addtogroup CommonDGHeader * @{ */ // **** Common Definitions **** // **** Common Macros **** /**@}*/ // **** VectorCAST Definitions **** #ifdef _VECTORCAST_ #endif #endif