Files @ c5bc128e44a6
Branch filter:

Location: FeatherHAB/wsprhab/inc/usart.h

Ethan Zonca
WSPR and gps now coexist, don't call jtencode_init because it inits the reed-solomon encoder that wspr doesn't even use
#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