Dependencies:   mbed-dsp mbed

Fork of DSP_200kHz by Mazzeo Research Group

Committer:
bmazzeo
Date:
Tue Feb 09 15:11:08 2016 +0000
Revision:
53:83a90a47c1fd
Parent:
Sample/adc.h@52:5a40cc58c4c2
ADC initialization and calibration up and running.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
timmey9 39:82dc3daecf32 1 #ifndef ADC_H_
timmey9 39:82dc3daecf32 2 #define ADC_H_
timmey9 39:82dc3daecf32 3
timmey9 39:82dc3daecf32 4 #include "mbed.h"
timmey9 41:3e0623d81b9a 5 #include "dma.h"
timmey9 39:82dc3daecf32 6
timmey9 39:82dc3daecf32 7
timmey9 45:d591d138cdeb 8 /***
timmey9 51:43143a3fc2d7 9 * Initializes the ADC to 16-bit single-ended, hardware triggered
timmey9 45:d591d138cdeb 10 * with DMA enabled.
timmey9 45:d591d138cdeb 11 **/
timmey9 45:d591d138cdeb 12 void adc_init();
timmey9 45:d591d138cdeb 13
timmey9 41:3e0623d81b9a 14 #endif /* ADC_H_ */