28 lines
703 B
C
28 lines
703 B
C
/*************************************************************************************************
|
|
**Filename: app_gpio.h
|
|
**Version :
|
|
**Author :
|
|
**Date :
|
|
**Description:
|
|
**
|
|
*************************************************************************************************/
|
|
#ifndef __APP_GPIO_H_
|
|
#define __APP_GPIO_H_
|
|
|
|
/*********************************************************************
|
|
* Include (include files)
|
|
*/
|
|
#include "gpio.h"
|
|
#include "i2c.h"
|
|
|
|
/*********************************************************************
|
|
* Global Function declared ('extern')
|
|
*/
|
|
void LED_IO_Config(void);
|
|
void IIC_IO_Config(void);
|
|
void Ctr_IO_Config(void);
|
|
void INT_IO_Config(void);
|
|
|
|
#endif
|
|
|