Rename Kconfig options (components/lwip)

This commit is contained in:
Roland Dobai
2019-04-29 14:30:13 +02:00
parent e9f1011b1b
commit 92950db44e
20 changed files with 186 additions and 147 deletions

View File

@@ -412,7 +412,7 @@ sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize
portBASE_TYPE result;
result = xTaskCreatePinnedToCore(thread, name, stacksize, arg, prio, &created_task,
CONFIG_TCPIP_TASK_AFFINITY);
CONFIG_LWIP_TCPIP_TASK_AFFINITY);
if (result != pdPASS) {
return NULL;