mirror of
https://github.com/No-Chicken/Power-Pico.git
synced 2026-04-03 13:02:36 +08:00
20 lines
222 B
C
20 lines
222 B
C
|
|
#ifndef __KT6328_H__
|
||
|
|
#define __KT6328_H__
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "main.h"
|
||
|
|
|
||
|
|
void KT6328_GPIO_Init(void);
|
||
|
|
void KT6328_Enable(void);
|
||
|
|
void KT6328_Disable(void);
|
||
|
|
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|