There is recently introduced option to subscribe for documentation updates - http://espressif.com/zh-hans/subscribeOops, I missed some releases!

There is recently introduced option to subscribe for documentation updates - http://espressif.com/zh-hans/subscribeOops, I missed some releases!
And again...WiFive wrote:Encoding seems to be messed up again, can't search or copy text. Could in 1.4.ESP_Angus wrote:Technical Reference is now V1.5, released March 1.
At last! EMAC is finally presented in the manualMeiling Lin wrote:The ESP32 Technical Reference Manual is now V2.8. This is the complete edition of the TRM!![]()
PDF link to the latest (same as the link in the first post)
Also, please subscribe to our documentation updates at: http://espressif.com/en/subscribe
Code: Select all
task_t coffeeTask()
{
while(atWork){
if(!xStreamBufferIsEmpty(mug)){
coffeeDrink(mug);
} else {
xTaskCreate(sBrew, "brew", 9000, &mug, 1, NULL);
xSemaphoreTake(sCoffeeRdy, portMAX_DELAY);
}
}
vTaskDelete(NULL);
}
Users browsing this forum: No registered users and 43 guests