Re: Adverse effects of CONFIG_FREERTOS_HZ = 1000? by MicroController » Sat May 20, 2023 10:58 pm Another option for non-busy waiting would be to use the esp hr timer (micro-second resolution), i.e. set a timer to send your task a notification after X us, then have the task...
由于在假设RTOS滴答率由configTICK_RATE_HZ(portTICK_RATE_MS = 1000 / configTICK_RATE_HZ)正确...
Hello, I am working on a project that has some atypical constraints that keep popping up (reading sensors at high cycle rates, and running tasks for many hours on end). And I've realized that having the configTICK_RATE_HZ set to 1000 may...