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 = uartAttach );
9PROVIDE ( esp_rom_uart_tx_wait_idle = uart_tx_wait_idle );
10PROVIDE ( esp_rom_intr_matrix_set = intr_matrix_set );
11PROVIDE ( esp_rom_gpio_matrix_in = gpio_matrix_in );
12PROVIDE ( esp_rom_gpio_matrix_out = gpio_matrix_out );
13PROVIDE ( esp_rom_ets_set_appcpu_boot_addr = ets_set_appcpu_boot_addr );
14PROVIDE ( esp_rom_i2c_readReg = rom_i2c_readReg );
15PROVIDE ( esp_rom_i2c_writeReg = rom_i2c_writeReg );
16PROVIDE ( esp_rom_ets_printf = ets_printf );
17PROVIDE ( esp_rom_ets_delay_us = ets_delay_us );
18PROVIDE ( esp_rom_Cache_Disable_ICache = Cache_Disable_ICache );
19PROVIDE ( esp_rom_Cache_Disable_DCache = Cache_Disable_DCache );
20PROVIDE ( esp_rom_Cache_Allocate_SRAM = Cache_Allocate_SRAM );
21PROVIDE ( esp_rom_Cache_Suspend_ICache = Cache_Suspend_ICache );
22PROVIDE ( esp_rom_Cache_Dbus_MMU_Set = Cache_Dbus_MMU_Set );
23PROVIDE ( esp_rom_Cache_Ibus_MMU_Set = Cache_Ibus_MMU_Set );
24PROVIDE ( esp_rom_Cache_Set_ICache_Mode = Cache_Set_ICache_Mode );
25PROVIDE ( esp_rom_Cache_Invalidate_ICache_All = Cache_Invalidate_ICache_All );
26PROVIDE ( esp_rom_Cache_Resume_ICache = Cache_Resume_ICache );
27PROVIDE ( esp_rom_Cache_Invalidate_Addr = Cache_Invalidate_Addr );
28PROVIDE ( esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode );
29PROVIDE ( esp_rom_Cache_Invalidate_DCache_All = Cache_Invalidate_DCache_All );
30PROVIDE ( esp_rom_Cache_Enable_DCache = Cache_Enable_DCache );
31PROVIDE ( esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode );
32