2025-02-18 10:13:34 +08:00

13 lines
172 B
C

#ifndef __SLEEP_H__
#define __SLEEP_H__
#include "lin.h"
#if (SLEEP_SUPPORT == 1)
#include "main.h"
void sleep(void);
#endif /* End #if (SLEEP_SUPPORT == 1) */
#endif