Files @ 2dcb56fc814b
Branch filter:

Location: FeatherHAB/wsprhab/inc/usart.h

Ethan Zonca
GPS parse succeed, doesn't coexist with wspr right now, probably malloc taking up all of the heap...
#ifndef __usart_H
#define __usart_H

#include "stm32f0xx_hal.h"

void uart_init(void);
UART_HandleTypeDef* uart_gethandle(void);
DMA_HandleTypeDef* uart_get_txdma_handle(void);
DMA_HandleTypeDef* uart_get_rxdma_handle(void);

#endif