/**********************************************************************//** * * 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 SensorProcess.c * * @date 20-Feb-2020 * @author S. Nejatali * * @brief Processing sensor data. * **************************************************************************/ #include "SensorProcess.h" #include "LoadCell.h" #include "SystemCommMessages.h" #include "FPGA.h" /*********************************************************************//** * @brief * The execSensorProcess function calls other routines that process sensor data. * @details * Inputs : none * Outputs : processing data. * @return none *************************************************************************/ void execSensorProcess() { execLoadCell(); }