17 lines
223 B
C
17 lines
223 B
C
/*
|
|
* dma.h
|
|
*
|
|
* Created on: 16 sep. 2016
|
|
* Author: Philip
|
|
*/
|
|
|
|
#ifndef DRIVERS_DMA_H_
|
|
#define DRIVERS_DMA_H_
|
|
|
|
#include "stm32f4xx.h"
|
|
#include "system_variables.h"
|
|
|
|
void configureDMA();
|
|
|
|
#endif /* DRIVERS_DMA_H_ */
|