mirror of
https://github.com/WeActStudio/WeActStudio.EpaperModule.git
synced 2026-08-16 13:13:45 +02:00
18 lines
179 B
C
18 lines
179 B
C
#ifndef usart_H
|
|
#define usart_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "gd32f30x.h"
|
|
#include <stdio.h>
|
|
|
|
void usart0_config(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|