From 61acc00fc3c527f4f16f005a09b4a0ccb419fcb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Metrich?= <45318189+FredM67@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:22:39 +0100 Subject: [PATCH] Fix doc --- Mk2_3phase_RFdatalog_temp/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mk2_3phase_RFdatalog_temp/main.cpp b/Mk2_3phase_RFdatalog_temp/main.cpp index 846d2765..ba3bdfbe 100644 --- a/Mk2_3phase_RFdatalog_temp/main.cpp +++ b/Mk2_3phase_RFdatalog_temp/main.cpp @@ -46,6 +46,7 @@ static_assert(__cplusplus >= 201703L, "See also : https://github.com/FredM67/PVR /** * @brief Interrupt Service Routine - Interrupt-Driven Analog Conversion. + * * @details An Interrupt Service Routine is now defined which instructs the ADC to perform a conversion * for each of the voltage and current sensors in turn. * @@ -71,6 +72,7 @@ static_assert(__cplusplus >= 201703L, "See also : https://github.com/FredM67/PVR * - Variables shared with main code may need to be protected by "critical sections" * - Don't try to turn interrupts off or on * + * @ingroup TimeCritical */ ISR(ADC_vect) { @@ -425,7 +427,7 @@ void loop() tx_data.temperature_x100[idx] = tmp; } while (idx); - + temperatureSensing.requestTemperatures(); // for use next time around }