/************************************************************************** * * 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 GPIO.h * * @author (last) Vinayakam Mani * @date (last) 29-Aug-2024 * * @author (original) Sean * @date (original) 29-Aug-2024 * ***************************************************************************/ #ifndef __GPIO_H__ #define __GPIO_H__ #include "DDCommon.h" /** * @defgroup GPIO GPIO * @brief The GPIO unit provides definitions and GPIO pin access abstraction * functions to provide low-level GPIO interface. * * @addtogroup GPIO * @{ */ // ********** public function prototypes ********** void toggleWatchdogPetSignal( void ); void setWatchdogPetSignal( void ); void clrWatchdogPetSignal( void ); PIN_SIGNAL_STATE_T getCPLDWatchdogExpired( void ); /**@}*/ #endif