drivers: uart: espressif: Add LP UART driver
Add LP UART driver for LP Core Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
This commit is contained in:
parent
0b79b47811
commit
232e2c5a3c
12 changed files with 285 additions and 1 deletions
|
@ -54,6 +54,8 @@ SECTIONS
|
|||
__text_region_start = ABSOLUTE(.);
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.iram1)
|
||||
*(.iram1.*)
|
||||
__text_region_end = ABSOLUTE(.);
|
||||
} >ram
|
||||
|
||||
|
@ -104,11 +106,13 @@ SECTIONS
|
|||
|
||||
.bss ALIGN(4) :
|
||||
{
|
||||
__bss_start = .;
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
*(.sbss)
|
||||
*(.sbss*)
|
||||
PROVIDE(end = .);
|
||||
__bss_end = .;
|
||||
_heap_sentry = .;
|
||||
} >ram
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue