diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-11-03 10:51:23 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-11-03 10:51:23 +1000 |
commit | 7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d (patch) | |
tree | 95cf152ef65ff19c7b2515b427bbe86b92b611d0 /drivers/gadc | |
parent | 8bd70d953bcd3e32ceb4e45a4e561c973726280a (diff) | |
download | uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.gz uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.bz2 uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.zip |
For all source files update integer types to the new gI8 etc type names
Diffstat (limited to 'drivers/gadc')
-rw-r--r-- | drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c b/drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c index 94f48326..630ef5c7 100644 --- a/drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c +++ b/drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c @@ -16,7 +16,7 @@ #include "../../../src/gadc/gadc_driver.h" -static uint32_t nextfreq; +static gU32 nextfreq; // Forward references to ISR routines static void ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n); @@ -50,8 +50,8 @@ void gadc_lld_init(void) { adcStart(&ADCD1, 0); } -size_t gadc_lld_samplesperconversion(uint32_t physdev) { - size_t samples; +gMemSize gadc_lld_samplesperconversion(gU32 physdev) { + gMemSize samples; for(samples = 0; physdev; physdev >>= 1) if (physdev & 0x01) @@ -59,7 +59,7 @@ size_t gadc_lld_samplesperconversion(uint32_t physdev) { return samples; } -void gadc_lld_start_timerI(uint32_t frequency) { +void gadc_lld_start_timerI(gU32 frequency) { // Nothing to do here - the AT91SAM7 adc driver uses an internal timer // which is set up when the job is started. We save this here just to // indicate the timer should be re-initialised on the next timer job |