diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-14 14:53:55 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-14 14:53:55 +0000 |
commit | 95fc35d5f581597d26044733948f21aebf3845ac (patch) | |
tree | f7cd93a965ac6c6babbfc0cf6d68ee800e49894b /testhal/STM32/STM32L4xx/GPT-ADC/main.c | |
parent | 53a30f78fe3e5ebebc379f1f3ab0ef92448ac349 (diff) | |
download | ChibiOS-95fc35d5f581597d26044733948f21aebf3845ac.tar.gz ChibiOS-95fc35d5f581597d26044733948f21aebf3845ac.tar.bz2 ChibiOS-95fc35d5f581597d26044733948f21aebf3845ac.zip |
Fixed some details about ADCv3.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8600 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32L4xx/GPT-ADC/main.c')
-rw-r--r-- | testhal/STM32/STM32L4xx/GPT-ADC/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/STM32L4xx/GPT-ADC/main.c b/testhal/STM32/STM32L4xx/GPT-ADC/main.c index bc695e55a..93d4bcff6 100644 --- a/testhal/STM32/STM32L4xx/GPT-ADC/main.c +++ b/testhal/STM32/STM32L4xx/GPT-ADC/main.c @@ -142,8 +142,8 @@ int main(void) { * Activates the ADC1 driver and the temperature sensor.
*/
adcStart(&ADCD1, NULL);
- adcSTM32EnableVREF();
- adcSTM32EnableTS();
+ adcSTM32EnableVREF(&ADCD1);
+ adcSTM32EnableTS(&ADCD1);
/*
* Starts an ADC continuous conversion triggered with a period of
|