Files @ 28c7e1414fd9
Branch filter:

Location: FeatherHAB/wsprhab/src/dma.c

Ethan Zonca
Disabled link-time optimization which fixed jump to rst vector on encode, downside is code size grew
#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);

}