/************************************************************************** * * Copyright (c) 2024-2026 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 BLCommon.h * * @author (last) Dara Navaei * @date (last) 09-Mar-2026 * * @author (original) Dara Navaei * @date (original) 01-Aug-2024 * ***************************************************************************/ #ifndef __BLCOMMON_H__ #define __BLCOMMON_H__ #include "hal_stdtypes.h" #include "Common.h" // ********** version ********** /* * TD = 0 * DD = 1 */ #define BL_STACK_ID 1 // TODO de we need to check the value to make sure it is range (e.g. it is not set to 20?) #define BL_VERSION_MAJOR 0 #define BL_VERSION_MINOR 0 #define BL_VERSION_MICRO 0 #define BL_VERIOSN_BUILD 0 #endif