diff --git a/standby.c b/standby.c index a45a9b3..abae7f5 100644 --- a/standby.c +++ b/standby.c @@ -4,12 +4,11 @@ #include "standby.h" - +/* static void Bsp_GpioFInt_CallbackFunction(void) { - SMC_SetSystemMode(SMC_MODE_RUN); } -void StandBy_Init(tStandBy *env) { +void StandBy_Init() { PORT_InitType tInitStruct = {0}; PORT_InterruptType tIntStruct = {0}; @@ -31,4 +30,5 @@ void StandBy_Init(tStandBy *env) { NVIC_SetPriority(PORTE_IRQn, 0xFF); NVIC_EnableIRQ(PORTE_IRQn); -} \ No newline at end of file +} + */ \ No newline at end of file diff --git a/standby.h b/standby.h index 9683c0c..b1da96a 100644 --- a/standby.h +++ b/standby.h @@ -12,12 +12,6 @@ #include "fc7xxx_driver_gpio.h" #include "fc7xxx_driver_tstmp.h" -typedef struct { - - -} tStandBy; - - -void StandBy_Init(tStandBy *env); +void StandBy_Init(); #endif //HVAC_M7_STANDBY_H