/************************************************************************** * * 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 TaskPriority.c * * @author (last) Dara Navaei * @date (last) 21-Jan-2026 * * @author (original) Dara Navaei * @date (original) 01-Aug-2024 * ***************************************************************************/ #include "BLCommon.h" #include "CommBuffers.h" #include "FPGA.h" #include "TaskPriority.h" /** * @addtogroup TaskPriority * @{ */ // ********** private data ********** /*********************************************************************//** * @brief * The taskPriority function handles the scheduled Priority Task interrupt. * Calls the executive functions for FPGA. * @details \b Inputs: none * @details \b Outputs: Executive functions running in priority task are called. * @return none *************************************************************************/ void taskPriority( void ) { execFPGA(); // TODo add watchdog } /**@}*/