34 lines
674 B
C
34 lines
674 B
C
/*
|
|
******************************************************************************
|
|
*
|
|
* @file gpio.h
|
|
* @brief gpio module
|
|
*
|
|
*
|
|
* @version 1.0
|
|
* @date 2023/05/12 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 2023/07/12 Alex build this file
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __GPIO_H__
|
|
#define __GPIO_H__
|
|
|
|
#include "define.h"
|
|
|
|
|
|
//extern void GPIO_Init(void);
|
|
//extern void Enter_ShipMode(void);
|
|
|
|
|
|
#endif
|
|
|
|
|