Files @ e3feb70c71e6
Branch filter:

Location: FeatherHAB/wsprhab/src/dma.c

Ethan Zonca
Commented out GPS code that wasn't compiling, added power saving options to si5351 code. Tx is now 66mA, no GPS.
#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);

}