/************************************************************************** * * Copyright (c) 2024-2024 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 Temperature.c * * @author (last) Sean Nash * @date (last) 09-Nov-2024 * * @author (original) Sean Nash * @date (original) 09-Nov-2024 * ***************************************************************************/ #include "Messaging.h" #include "MessageSupport.h" #include "Temperature.h" #include "TaskPriority.h" #include "Utilities.h" /** * @addtogroup Temperature * @{ */ // ********** private definitions ********** // ********** private data ********** // ********** private function prototypes ********** /*********************************************************************//** * @brief * The initTemperature function initializes the temperature unit. * @details \b Inputs: none * @details \b Outputs: temperature unit variables initialized. * @return none *************************************************************************/ void initTemperature( void ) { // Initialize the temperature sensors initTemperatureSensors(); } /*********************************************************************//** * @brief * The execTemperatureSensors function executes the temperature sensors' * state machine. * @details \b Inputs: none * @details \b Outputs: none * @return none *************************************************************************/ void execTemperatureSensors( void ) { return; } /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ /**@}*/