/* * UVReactors.c * * Created on: Jun 20, 2020 * Author: fw */ #include "gio.h" #include "UVReactors.h" #include "Common.h" #define ENABLE_UV_REACTOR 1 #define DISABLE_UV_REACTOR 0 #define UV_1_GIO_PORT_PIN 0 #define UV_2_GIO_PORT_PIN 1 SELF_TEST_STATUS_T execUVReactorsSelfTest( void ) { } void execUVReactos( void ) { } BOOL startInletUVReactor() { BOOL status = TRUE; //gioSetBit( gioPORTA, UV_1_GIO_PORT_PIN, ENABLE_UV_REACTOR ); return status; } BOOL startOutletUVReactor() { BOOL status = TRUE; //gioSetBit( gioPORTA, UV_2_GIO_PORT_PIN, ENABLE_UV_REACTOR ); return status; } void stopInletUVReactor() { //gioSetBit( gioPORTA, UV_1_GIO_PORT_PIN, DISABLE_UV_REACTOR ); } void stopOutletUVReactor() { //gioSetBit( gioPORTA, UV_2_GIO_PORT_PIN, DISABLE_UV_REACTOR ); }