ADCapture version 0.06
===========================

SYNOPSIS:

//------------------------------------------------
 #define BUFFER_SIZE 128
//------------------------------------------------
 void main(void)
    {
    float f_buffer[BUFFER_SIZE];

    ADCaptureInit(ADC_VREF_BG, ADC_FRQ_115kHz, ADC3);

    while(1)
        {
        ADCaptureRunFreeFloat(f_buffer, BUFFER_SIZE);
        ADCaptureShowFloatBuffer(f_buffer, BUFFER_SIZE);
        Thread_Delay(100);
        }
    }
//------------------------------------------------

DEPENDENCIES:

This module requires no other modules and libraries.

DESCRIPTION:

When many analog to digital conversions must be carried out
in a small period of time, the C-Controlsystem quickly comes
on his limit. To solve this problem an array is filled in an
assembler function with the measured values. The main purpose
of the module is to check values which are changing very
quickly or unstable.
For example:
 -Audio waves
 -movement detection
 -speed measurement
 -process control
 -fsk-demodulation
 -spectrum analyze

AUTHOR:

Torsten Knorr, create-soft@freenet.de

SEE ALSO:

 http://create-soft.host4free.de






