From a55074a6a4c4b279ccf875111d20082cdc18fc8c Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Thu, 21 Nov 2024 17:11:12 +0100 Subject: [PATCH 1/2] chore(hardwaretimer): update definition TIMER_DISABLED replaced by TIMER_OUTPUT_DISABLED See https://github.com/stm32duino/Arduino_Core_STM32/pull/2572 Signed-off-by: Frederic Pillon --- .../HardwareTimer_OutputInput_test.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/NonReg/HardwareTimer/HardwareTimer_OutputInput_test/HardwareTimer_OutputInput_test.ino b/examples/NonReg/HardwareTimer/HardwareTimer_OutputInput_test/HardwareTimer_OutputInput_test.ino index 12a499b..1dc20d3 100644 --- a/examples/NonReg/HardwareTimer/HardwareTimer_OutputInput_test/HardwareTimer_OutputInput_test.ino +++ b/examples/NonReg/HardwareTimer/HardwareTimer_OutputInput_test/HardwareTimer_OutputInput_test.ino @@ -453,7 +453,7 @@ void loop() test_step++; MyTim_output->pauseChannel(Output1_channel); - MyTim_output->setMode(Output1_channel, TIMER_DISABLED); + MyTim_output->setMode(Output1_channel, TIMER_OUTPUT_DISABLED); MyTim_output->resumeChannel(Output1_channel); Verify_output(1, 0, 0); // in PWM2, output is the complementary of PW1 Verify_output(2, OUTPUT_FREQUENCY, OUTPUT_DUTY2); From 33f94a16b712c74ba2f8a9666c43bf1d6be28b7b Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Fri, 22 Nov 2024 14:45:38 +0100 Subject: [PATCH 2/2] chore: update version Signed-off-by: Frederic Pillon --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 9fdcaf3..a70baf0 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=STM32duino Examples -version=1.2.4 +version=1.2.5 author=several maintainer=stm32duino sentence=Provides several examples for the Arduino core for STM32 MCUs.