mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
35 lines
866 B
C
35 lines
866 B
C
/********************************** (C) COPYRIGHT *******************************
|
|
* File Name : debug.h
|
|
* Author : WCH
|
|
* Version : V1.0.0
|
|
* Date : 2020/04/30
|
|
* Description : This file contains all the functions prototypes for UART
|
|
* Printf , Delay functions.
|
|
*******************************************************************************/
|
|
#ifndef __DEBUG_H
|
|
#define __DEBUG_H
|
|
|
|
#include "stdio.h"
|
|
#include "ch32v10x.h"
|
|
|
|
/* UART Printf Definition */
|
|
#define DEBUG_UART1 1
|
|
#define DEBUG_UART2 2
|
|
#define DEBUG_UART3 3
|
|
|
|
/* DEBUG UATR Definition */
|
|
#define DEBUG DEBUG_UART1
|
|
//#define DEBUG DEBUG_UART2
|
|
//#define DEBUG DEBUG_UART3
|
|
|
|
|
|
void Delay_Init(void);
|
|
void Delay_Us (uint32_t n);
|
|
void Delay_Ms (uint32_t n);
|
|
void USART_Printf_Init(uint32_t baudrate);
|
|
|
|
#endif /* __DEBUG_H */
|
|
|
|
|
|
|