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@39:82dc3daecf32, 2015-01-29 (annotated)
- Committer:
- timmey9
- Date:
- Thu Jan 29 16:18:54 2015 +0000
- Revision:
- 39:82dc3daecf32
- Parent:
- 36:07d8a3143967
- Child:
- 40:bd6d8c35e822
Cleaned up the code. PDB still won't work.
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 | 39:82dc3daecf32 | 11 | #include "mbed.h" |
timmey9 | 34:44cc9b76a507 | 12 | |
timmey9 | 36:07d8a3143967 | 13 | extern int rotary_count; |
timmey9 | 36:07d8a3143967 | 14 | |
timmey9 | 39:82dc3daecf32 | 15 | void dma_init(uint16_t* array0, uint16_t* array1, uint16_t* array2, int adc_reads, Serial &pc); |
timmey9 | 34:44cc9b76a507 | 16 | |
timmey9 | 34:44cc9b76a507 | 17 | #endif /* DMA_H_ */ |