-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: drivers: debug: add esp32s3_luatos_core
add overlay for esp32s3_luatos_core board Signed-off-by: YuLong Yao <feilongphone@gmail.com>
- Loading branch information
1 parent
1a2a8fd
commit 21fcf61
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
tests/subsys/debug/coredump_backends/boards/esp32s3_luatos_core.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&flash0 { | ||
partitions { | ||
/* | ||
* Reduce storage_partition to make space for | ||
* coredump_partition | ||
*/ | ||
|
||
storage_partition: partition@250000 { | ||
label = "storage"; | ||
reg = <0x00250000 0x00005000>; | ||
}; | ||
|
||
coredump_partition: partition@255000 { | ||
label = "coredump-partition"; | ||
reg = <0x255000 DT_SIZE_K(4)>; | ||
}; | ||
|
||
}; | ||
}; |
25 changes: 25 additions & 0 deletions
25
tests/subsys/debug/coredump_backends/boards/esp32s3_luatos_core_usb.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&flash0 { | ||
partitions { | ||
/* | ||
* Reduce storage_partition to make space for | ||
* coredump_partition | ||
*/ | ||
|
||
storage_partition: partition@250000 { | ||
label = "storage"; | ||
reg = <0x00250000 0x00005000>; | ||
}; | ||
|
||
coredump_partition: partition@255000 { | ||
label = "coredump-partition"; | ||
reg = <0x255000 DT_SIZE_K(4)>; | ||
}; | ||
|
||
}; | ||
}; |