Files @ ddd34459834e
Branch filter:

Location: FeatherHAB/wsprhab/src/dma.c - annotation

Ethan Zonca
Add GPS code
#include "dma.h"

void dma_init(void) 
{
  /* DMA controller clock enable */
  __DMA1_CLK_ENABLE();

  /* DMA interrupt init */
  HAL_NVIC_SetPriority(DMA1_Channel2_3_IRQn, 0, 0);
  HAL_NVIC_EnableIRQ(DMA1_Channel2_3_IRQn);

}