xypad theremin for LPC1768

Dependencies:   MODDMA mbed

dma.h

Committer:
exopiped
Date:
2016-03-14
Revision:
2:c5eeaf1c8e69
Parent:
0:8ee38453bad9

File content as of revision 2:c5eeaf1c8e69:

#ifndef DMA_H
#define DMA_H

#define DMA_BUFSIZE 512
#define DAC_POWER_MODE (1<<16) 

void dma_init(void);
void dma_enable(void);
void dma_disable(void);
int *dma_get_bufptr(int bufno);
void TC0_callback(void);
void ERR0_callback(void);
void TC1_callback(void);
void ERR1_callback(void);


#endif