1/* Aliases used on Zephyr environment */
2
3/* Consider using prefix in all names when adding it */
4/* into zephyr source files */
5
6PROVIDE ( esp_rom_uart_tx_one_char = uart_tx_one_char );
7PROVIDE ( esp_rom_uart_rx_one_char = uart_rx_one_char );
8PROVIDE ( esp_rom_uart_attach = uart_attach );
9PROVIDE ( esp_rom_uart_tx_wait_idle = uart_tx_wait_idle );
10PROVIDE ( esp_rom_intr_matrix_set = intr_matrix_set );
11PROVIDE ( esp_rom_Cache_Disable_ICache = Cache_Disable_ICache );
12PROVIDE ( esp_rom_Cache_Disable_DCache = Cache_Disable_DCache );
13PROVIDE ( esp_rom_Cache_Allocate_SRAM = Cache_Allocate_SRAM );
14PROVIDE ( esp_rom_Cache_Suspend_ICache = Cache_Suspend_ICache );
15PROVIDE ( esp_rom_Cache_Ibus_MMU_Set = Cache_Ibus_MMU_Set );
16PROVIDE ( esp_rom_Cache_Set_ICache_Mode = Cache_Set_ICache_Mode );
17PROVIDE ( esp_rom_Cache_Invalidate_ICache_All = Cache_Invalidate_ICache_All );
18PROVIDE ( esp_rom_Cache_Resume_ICache = Cache_Resume_ICache );
19PROVIDE ( esp_rom_Cache_Invalidate_Addr = Cache_Invalidate_Addr );
20PROVIDE ( esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode );
21PROVIDE ( esp_rom_Cache_Invalidate_DCache_All = Cache_Invalidate_DCache_All );
22PROVIDE ( esp_rom_Cache_Enable_DCache = Cache_Enable_DCache );
23PROVIDE ( esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode );
24PROVIDE ( esp_rom_ets_set_user_start = ets_set_user_start );
25PROVIDE ( esp_rom_ets_printf = ets_printf );
26PROVIDE ( esp_rom_ets_delay_us = ets_delay_us );
27PROVIDE ( esp_rom_cache_set_idrom_mmu_size = Cache_Set_IDROM_MMU_Size );
28PROVIDE ( esp_rom_g_ticks_per_us_pro = g_ticks_per_us_pro );
29PROVIDE ( esp_rom_gpio_matrix_in = gpio_matrix_in );
30PROVIDE ( esp_rom_gpio_matrix_out = gpio_matrix_out );
31