esp32: Prefix ROM routines with esp32_rom_
Also provide their prototypes in `soc.h`. This should help readability, since some ROM functions, with their names as provided by Espressif, have sometimes the same prefix as Zephyr APIs. Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
This commit is contained in:
parent
095424c416
commit
5f22dab17a
5 changed files with 45 additions and 13 deletions
|
@ -24,10 +24,12 @@
|
|||
|
||||
PROVIDE ( __stack = 0x3ffe3f20 );
|
||||
|
||||
PROVIDE ( uart_tx_one_char = 0x40009200 );
|
||||
PROVIDE ( uart_rx_one_char = 0x400092d0 );
|
||||
PROVIDE ( uartAttach = 0x40008fd0 );
|
||||
PROVIDE ( intr_matrix_set = 0x4000681c );
|
||||
PROVIDE ( esp32_rom_uart_tx_one_char = 0x40009200 );
|
||||
PROVIDE ( esp32_rom_uart_rx_one_char = 0x400092d0 );
|
||||
PROVIDE ( esp32_rom_uart_attach = 0x40008fd0 );
|
||||
PROVIDE ( esp32_rom_intr_matrix_set = 0x4000681c );
|
||||
PROVIDE ( esp32_rom_gpio_matrix_in = 0x40009edc );
|
||||
PROVIDE ( esp32_rom_gpio_matrix_out = 0x40009f0c );
|
||||
|
||||
MEMORY
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue