ADCapture version 0.05
===========================

The README is used to introduce the module and provide instructions on
how to use and any other information that should be provided.
It is usually a good idea to provide version information here so that
people can decide whether fixes for the module are worth downloading.

SYNOPSIS:

//------------------------------------------------
 #define BUFFER_SIZE 256
//------------------------------------------------
 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:

ToDo

AUTHORS:

Torsten Knorr, Pepe V??? create-soft@freenet.de

SEE ALSO:

 http://create-soft.host4free.de






