34 lines
686 B
C
34 lines
686 B
C
/*
|
|
******************************************************************************
|
|
*
|
|
* @file gpio.h
|
|
* @brief gpio module
|
|
* @ic sy8835
|
|
*
|
|
* @version 1.0
|
|
* @date 2024/11/01 09:59:40
|
|
* @author Alex Xu
|
|
*
|
|
* Copyright (c) 2013-2099,Tkplusemi Technology Co.,Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* History:
|
|
* Revision Date Author Desc
|
|
* 1.0.0 2024/11/01 Alex build this file
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __GPIO_H__
|
|
#define __GPIO_H__
|
|
|
|
#include "define.h"
|
|
|
|
|
|
//extern void GPIO_Init(void);
|
|
//extern void Enter_ShipMode(void);
|
|
|
|
|
|
#endif
|
|
|
|
|