YAHAL
Yet Another Hardware Abstraction Library
Loading...
Searching...
No Matches
dma_msp432.cpp
1#include "dma_msp432.h"
2#include "msp.h"
3
4dma_msp432 dma_msp432::_inst;
5
6dma_msp432::dma_msp432() {
7 DMA_Control->CTLBASE = (uint32_t)ctrl_data;
8}
9
10dma_msp432 & dma_msp432::inst() {
11 return _inst;
12}