Skip to content

Commit 67496d3

Browse files
committed
[Telink] B92 update
1 parent 5c85970 commit 67496d3

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/examples-telink.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -217,15 +217,15 @@ jobs:
217217
- name: clean out build output
218218
run: rm -rf ./out
219219

220-
- name: Build example Telink (B92) Lock App with DFU, 4Mb flash
220+
- name: Build example Telink (B92) Lock App with DFU
221221
# Run test for master and s07641069 PRs
222222
if: github.event.pull_request.number == null || github.event.pull_request.head.repo.full_name == 's07641069/connectedhomeip'
223223
run: |
224224
./scripts/run_in_build_env.sh \
225-
"./scripts/build/build_examples.py --target 'telink-tlsr9528a-lock-dfu-4mb' build"
225+
"./scripts/build/build_examples.py --target 'telink-tlsr9528a-lock-dfu' build"
226226
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \
227-
telink tlsr9528a lock-app-dfu-4mb \
228-
out/telink-tlsr9528a-lock-dfu-4mb/zephyr/zephyr.elf \
227+
telink tlsr9528a lock-app-dfu \
228+
out/telink-tlsr9528a-lock-dfu/zephyr/zephyr.elf \
229229
/tmp/bloat_reports/
230230
231231
- name: clean out build output

src/platform/telink/tlsr9528a_2m_flash.overlay

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99

1010
boot_partition: partition@0 {
1111
label = "mcuboot";
12-
reg = <0x00000000 0xd000>;
12+
reg = <0x00000000 0xf000>;
1313
};
14-
slot0_partition: partition@d000 {
14+
slot0_partition: partition@f000 {
1515
label = "image-0";
16-
reg = <0xd000 0xf2000>;
16+
reg = <0xf000 0xf1000>;
1717
};
18-
factory_partition: partition@ff000 {
18+
factory_partition: partition@100000 {
1919
label = "factory-data";
20-
reg = <0xff000 0x1000>;
20+
reg = <0x100000 0x1000>;
2121
};
22-
storage_partition: partition@100000 {
22+
storage_partition: partition@101000 {
2323
label = "storage";
24-
reg = <0x100000 0xc000>;
24+
reg = <0x101000 0xc000>;
2525
};
26-
slot1_partition: partition@10c000 {
26+
slot1_partition: partition@10d000 {
2727
label = "image-1";
28-
reg = <0x10c000 0xf2000>;
28+
reg = <0x10d000 0xf1000>;
2929
};
3030
vendor_partition: partition@1fe000 {
3131
label = "vendor-data";

0 commit comments

Comments
 (0)