添加一些关于midi播放的项目

This commit is contained in:
terryLP
2025-03-24 14:30:56 +08:00
parent e31eb22077
commit 498b4ef13b
699 changed files with 186162 additions and 1 deletions
@@ -0,0 +1,21 @@
//
// Created by YangYongbao on 2017/3/18.
//
#ifndef STM32F10X_MAKEFILE_FREERTOS_UART_LOG_H
#define STM32F10X_MAKEFILE_FREERTOS_UART_LOG_H
#include <stdarg.h>
#include <stdio.h>
void uart_log_init(void);
void uart_putchar(unsigned int c);
int uart_getchar(void);
#ifdef USE_CUSTOM_PRINTF
void debug(const char *format, ...);
#else
#define debug(f_, ...) printf((f_), ##__VA_ARGS__)
#endif
#endif //STM32F10X_MAKEFILE_FREERTOS_UART_LOG_H