mirror of
https://github.com/ShadauxCat/CATSFC.git
synced 2025-04-02 10:41:47 -04:00
10 lines
225 B
C
Executable file
10 lines
225 B
C
Executable file
#ifndef __TCM_H
|
|
#define __TCM_H
|
|
|
|
/*
|
|
* Function: makes cpu to idle state. It will be waken up by RTC in the next second.
|
|
* Of course, it can be waken up by keys at any time.
|
|
*/
|
|
int enable_enter_idle(void);
|
|
|
|
#endif
|