Commit 05ce198d authored by James Pallister's avatar James Pallister
Browse files

Cleaned up some comments

parent c36b145f
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
@@ -663,22 +663,6 @@ int main(void)
    while (1)
    {
        usbd_poll(usbd_dev);

        // If we receive lots of USB commands, we might not process our
        // buffers fast enough, so lets do up to 16
        // for(i = 0; i < 4; i++)
        // {
        //     measurement_point *mp = &m_points[i];

        //     if(mp->head_ptr != mp->tail_ptr)
        //     {
        //         process_buffer(&mp->data_bufs[mp->head_ptr], &mp->accum_data);

        //         mp->head_ptr++;
        //         if(mp->head_ptr >= NUM_BUFFERS)
        //             mp->head_ptr = 0;
        //     }
        // }
    }
}

@@ -796,20 +780,6 @@ void adc_isr()

            pd->idx = 1-pd->idx;

            // pd->idx++;
            // // Move to next buffer?
            // if(pd->idx >= PWR_SAMPLES)
            // {
            //     mp->tail_ptr++;
            //     if(mp->tail_ptr >= NUM_BUFFERS)
            //         mp->tail_ptr = 0;

            //     mp->data_bufs[mp->tail_ptr].idx = 0;

            //     if(mp->tail_ptr == mp->head_ptr)
            //         error_condition();
            // }

            // HACK. Here we initialise the next channel to read from
            // because very occasionally the ADC seems to skip the next channel
            // suspect an odd timing bug, but only happens 1/10000000 times.