-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: workflows: Add test for flash driver
Allow CI to build tests concerning flash driver. Extra-arg in the twister command line (DTC_OVERLAY_FILE) allows to have the .overlay file in zephyr-silabs repository and not in the official zephyr repository. Co-authored-by: Martin Hoff <[email protected]> Signed-off-by: Jérôme Pouiller <[email protected]> Signed-off-by: Martin Hoff <[email protected]>
- Loading branch information
1 parent
b34af0e
commit 0712e79
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
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
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,23 @@ | ||
/* | ||
* Copyright (c) 2024 Silicon Laboratories Inc. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
&flash0 { | ||
partitions { | ||
compatible = "fixed-partitions"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
code_partition: partition@0 { | ||
label = "code_partition"; | ||
reg = <0x0000000 DT_SIZE_K(2048-8-16)>; | ||
}; | ||
storage_partition: partition@1FA000 { | ||
label = "storage"; | ||
reg = <0x01FA000 DT_SIZE_K(16)>; | ||
}; | ||
}; | ||
}; | ||
|