Skip to content

Commit ad27d37

Browse files
committed
Renamed vTaskPollSensors
1 parent bb0f8b1 commit ad27d37

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

include/LoadTasks.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ constexpr uint_fast8_t NUM_OPTIONAL_TASKS = 2; // Must match number of entires!
3737
/**
3838
* @brief Task to poll high priority sensors
3939
*/
40-
[[noreturn]] void vTaskPollSensors([[maybe_unused]] void *pvParameters);
40+
[[noreturn]] void vTPollS([[maybe_unused]] void *pvParameters);
4141
/**
4242
* @brief Task to control the load
4343
*/

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ vTaskUpdateFSM([[maybe_unused]] void *pvParameters) { // NOSONAR
391391
* @brief Task to poll high priority sensors
392392
*/
393393
[[noreturn]] void
394-
vTaskPollSensors([[maybe_unused]] void *pvParameters) { // NOSONAR
394+
vTPollS([[maybe_unused]] void *pvParameters) { // NOSONAR
395395
while (true) {
396396
static TickType_t xLastWakeTime = xTaskGetTickCount();
397397

0 commit comments

Comments
 (0)