stm32/App/printf/printf.h

10 lines
138 B
C
Raw Normal View History

2021-10-25 14:03:59 +00:00
#ifndef _printf_H
#define _printf_H
#include "stm32f10x.h"
#include "stdio.h"
int fputc(int ch,FILE *p);
void printf_init(void);
#endif