Not dead, I'm actually excited to see this. I'll take a deeper dive in the code later, to see how can I implement is into my code.
ESP IDF: Station + soft-AP (WIFI_MODE_APSTA) There is no working example - why? Where is?
- Vader_Mester
- Posts: 300
- Joined: Tue Dec 05, 2017 8:28 pm
- Location: Hungary
- Contact:
Re: ESP IDF: Station + soft-AP (WIFI_MODE_APSTA) There is no working example - why? Where is?
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);
}
Re: ESP IDF: Station + soft-AP (WIFI_MODE_APSTA) There is no working example - why? Where is?
Thanks for providing details. I will check it and let you know if any further query for the same.badidrox wrote: ↑Wed Jul 06, 2022 1:44 amprolly dead thread but just in case anyone needs the solution:
here is a repository that contains station mode, AP mode and station + AP mode. just to make life easier:
https://github.com/dahmadjid/esp32-idf- ... wifi_utils
Regards,
Ritesh Prajapati
Ritesh Prajapati
Who is online
Users browsing this forum: Bing [Bot] and 294 guests