X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/271be037b736d66a7b7e0c4d5d30c5a24025277f..665fe11f128b95874befdd59492379a0f5d8105e:/Projects/AVRISP/AVRISP.c?ds=sidebyside diff --git a/Projects/AVRISP/AVRISP.c b/Projects/AVRISP/AVRISP.c index f14b6545a..ce16aebfa 100644 --- a/Projects/AVRISP/AVRISP.c +++ b/Projects/AVRISP/AVRISP.c @@ -35,7 +35,6 @@ */ // TODO: Add in software SPI for lower programming speeds below 125KHz -// TODO: Add in VTARGET detection // TODO: Add reversed target connector checks #include "AVRISP.h" @@ -53,7 +52,12 @@ int main(void) for (;;) { - Process_AVRISP_Commands(); + Process_AVRISP_Commands(); + + #if defined(ADC) + /* Update VTARGET parameter with the latest ADC conversion of VTARGET on supported AVR models */ + V2Params_SetParameterValue(PARAM_VTARGET, ((5 * 10 * ADC_GetResult()) / 1024)); + #endif USB_USBTask(); } @@ -73,7 +77,14 @@ void SetupHardware(void) LEDs_Init(); USB_Init(); - /* Millisecond timer initialization for timeout checking */ + #if defined(ADC) + /* Initialize the ADC converter for VTARGET level detection on supported AVR models */ + ADC_Init(ADC_FREE_RUNNING | ADC_PRESCALE_128); + ADC_SetupChannel(VTARGET_ADC_CHANNEL); + ADC_StartReading(VTARGET_ADC_CHANNEL | ADC_RIGHT_ADJUSTED | ADC_REFERENCE_AVCC); + #endif + + /* Millisecond timer initialization for timeouts and delays */ OCR0A = ((F_CPU / 64) / 1000); TCCR0A = (1 << WGM01); TCCR0B = ((1 << CS01) | (1 << CS00));