36 lines
737 B
C
36 lines
737 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 bit Enter_Ship_Mode_Flag;
|
|
extern bit Ship_Mode_Comm_Flag;
|
|
|
|
extern void GPIO_Init(void);
|
|
//extern void Enter_ShipMode(void);
|
|
|
|
|
|
#endif
|
|
|
|
|