/**********************************************************************//** * * 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 HDCommon.h * * @date 27-Feb-2019 * @author S. Nash * * @brief Header file for common definitions, types and macros for HD firmware. * **************************************************************************/ #ifndef __HD_COMMON_H__ #define __HD_COMMON_H__ #include "hal_stdtypes.h" // ********** build switches ********** #ifndef _VECTORCAST_ #define RM46_EVAL_BOARD_TARGET 1 //#define BREADBOARD_TARGET 1 #define SIMULATE_UI 1 //#define DEBUG_ENABLED 1 //#define DISABLE_CRC_ERROR 1 // #define DISABLE_MOTOR_CURRENT_ERRORS 1 //#define SHOW_LOAD_CELL_IN_ROTOR_RPM 1 //#define SHOW_RAW_FLOW_VALUES 1*/ #ifdef DEBUG_ENABLED #include #include #endif #endif #define UF_TEST_ENABLED 1 #include "Common.h" /** * @defgroup CommonHDHeader CommonHDHeader * @brief Provides commonly used definitions and macros for HD firmware. * * @addtogroup CommonHDHeader * @{ */ // **** Common Definitions **** // **** Common Macros **** /**@}*/ // **** VectorCAST Definitions **** #ifdef _VECTORCAST_ #endif #endif