esp_wifi: Move esp32 DPORT access wrappers into esp_wifi component

This commit is contained in:
Angus Gratton
2019-11-21 13:44:00 +11:00
committed by Angus Gratton
parent b63d28730c
commit 459b3195ac
3 changed files with 21 additions and 16 deletions

View File

@@ -144,15 +144,6 @@ void IRAM_ATTR esp_dport_access_stall_other_cpu_end(void)
#endif /* CONFIG_FREERTOS_UNICORE */
}
void IRAM_ATTR esp_dport_access_stall_other_cpu_start_wrap(void)
{
DPORT_STALL_OTHER_CPU_START();
}
void IRAM_ATTR esp_dport_access_stall_other_cpu_end_wrap(void)
{
DPORT_STALL_OTHER_CPU_END();
}
#ifndef CONFIG_FREERTOS_UNICORE
static void dport_access_init_core(void *arg)