stm32g0cube-projects/vendor/my_printf/inc/my_printf.h

26 lines
539 B
C
Raw Normal View History

2025-08-25 00:54:33 +10:00
#ifndef MY_PRINTF_H
#define MY_PRINTF_H
#include <stdio.h>
#include "stm32g0xx_ll_rcc.h"
#include "stm32g0xx_ll_bus.h"
#include "stm32g0xx_ll_crs.h"
#include "stm32g0xx_ll_system.h"
#include "stm32g0xx_ll_exti.h"
#include "stm32g0xx_ll_cortex.h"
#include "stm32g0xx_ll_utils.h"
#include "stm32g0xx_ll_pwr.h"
#include "stm32g0xx_ll_dma.h"
#include "stm32g0xx_ll_gpio.h"
#include "stm32g0xx_ll_usart.h"
void my_printf_config(uint32_t baudRate);
void my_uart_txchar(char ch);
void my_uart_txstring(char *str);
#endif /* MY_PRINTF_H */