mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-19 00:13:21 +08:00
34 lines
640 B
C
34 lines
640 B
C
/*
|
|
*****************************************************************************
|
|
* Mountain View Silicon Tech. Inc.
|
|
* Copyright 2012, Mountain View Silicon Tech. Inc., ShangHai, China
|
|
* All rights reserved.
|
|
*
|
|
* Filename: Sleep.c
|
|
* Description: Sleep header file
|
|
*
|
|
* Change History:
|
|
* Lance - 11/xx/2012 - V0.1
|
|
* - create
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __SLEEP_H__
|
|
#define __SLEEP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif//__cplusplus
|
|
|
|
#include "type.h"
|
|
|
|
void Sleep(void);
|
|
|
|
void DeepSleep(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif//__cplusplus
|
|
|
|
#endif //__SLEEP_H__
|