Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DSP_200kHz by
dma.h@34:44cc9b76a507, 2015-01-25 (annotated)
- Committer:
- timmey9
- Date:
- Sun Jan 25 02:45:58 2015 +0000
- Revision:
- 34:44cc9b76a507
- Child:
- 36:07d8a3143967
Analog reading works. Trying to add DMA capabilities.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
timmey9 | 34:44cc9b76a507 | 1 | /* |
timmey9 | 34:44cc9b76a507 | 2 | * dma.h |
timmey9 | 34:44cc9b76a507 | 3 | * |
timmey9 | 34:44cc9b76a507 | 4 | * Created on: Nov 25, 2014 |
timmey9 | 34:44cc9b76a507 | 5 | * Author: Manuel Alejandro |
timmey9 | 34:44cc9b76a507 | 6 | */ |
timmey9 | 34:44cc9b76a507 | 7 | |
timmey9 | 34:44cc9b76a507 | 8 | #ifndef DMA_H_ |
timmey9 | 34:44cc9b76a507 | 9 | #define DMA_H_ |
timmey9 | 34:44cc9b76a507 | 10 | |
timmey9 | 34:44cc9b76a507 | 11 | #include "MK64F12.h" |
timmey9 | 34:44cc9b76a507 | 12 | |
timmey9 | 34:44cc9b76a507 | 13 | void dma_init(uint16_t* buffer,int adc_reads); |
timmey9 | 34:44cc9b76a507 | 14 | |
timmey9 | 34:44cc9b76a507 | 15 | #endif /* DMA_H_ */ |