diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-24 15:45:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-24 15:45:04 +0000 |
commit | c39343f7286f9d4135b40b470f5633ad044f0679 (patch) | |
tree | dbdfe50dc648f602e0607217891a18ca40cbd823 /os/hal/platforms/STM32F30x | |
parent | 9708a3c30ff4ce1d95b3333b6be4375138a89be5 (diff) | |
download | ChibiOS-c39343f7286f9d4135b40b470f5633ad044f0679.tar.gz ChibiOS-c39343f7286f9d4135b40b470f5633ad044f0679.tar.bz2 ChibiOS-c39343f7286f9d4135b40b470f5633ad044f0679.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5314 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F30x')
-rw-r--r-- | os/hal/platforms/STM32F30x/adc_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32F30x/adc_lld.h b/os/hal/platforms/STM32F30x/adc_lld.h index 5c64d035c..06039b850 100644 --- a/os/hal/platforms/STM32F30x/adc_lld.h +++ b/os/hal/platforms/STM32F30x/adc_lld.h @@ -336,7 +336,7 @@ #if !STM32_ADC_COMPACT_SAMPLES || defined(__DOXYGEN__)
typedef uint16_t adcsample_t;
#else
-typedef uint_t adcsample_t;
+typedef uint8_t adcsample_t;
#endif
/**
|