#ifndef __SLEEP_MODE_H__ #define __SLEEP_MODE_H__ /* * To activate Sleep Mode via SBC please follow the function call sequence below: * * * 1) CddSpi_Init(); SPI-Hw Port configuraiton must be included in Port_init(..) (MCAL) and called before! * 2) CddSbc_Init(); * 3) CddSbc_SetSleepMode(); * */ /*CddSpi Related APIs*/ void CddSpi_Init(void); /*CddSbc Related APIs*/ void CddSbc_Init(void); void CddSbc_SetSleepMode(void); #endif