File tree Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ supported:
24
24
- i2c
25
25
- i2s
26
26
- i3c
27
+ - nvs
27
28
- pwm
28
29
- regulator
29
30
- rtc
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ supported:
24
24
- i2c
25
25
- i2s
26
26
- i3c
27
+ - nvs
27
28
- pwm
28
29
- regulator
29
30
- rtc
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2025 NXP
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ /* The MCXN947 boards place the storage_partition in external flash. For this
8
+ * testcase, move the storage_partition to internal flash
9
+ */
10
+
11
+ /delete-node/ &storage_partition;
12
+
13
+ &flash {
14
+ partitions {
15
+ storage_partition: partition@100000 {
16
+ label = "storage";
17
+ reg = <0x100000 DT_SIZE_M(1)>;
18
+ };
19
+ };
20
+ };
Original file line number Diff line number Diff line change @@ -21,3 +21,27 @@ tests:
21
21
39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 \
22
22
56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 \
23
23
73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f"
24
+ sample.nvs.internal_flash :
25
+ tags : nvs
26
+ depends_on : nvs
27
+ integration_platforms :
28
+ - frdm_mcxn947/mcxn947/cpu0
29
+ platform_allow :
30
+ - frdm_mcxn947/mcxn947/cpu0
31
+ - mcx_n9xx_evk/mcxn947/cpu0
32
+ extra_args :
33
+ - platform:frdm_mcxn947/mcxn947/cpu0:"DTC_OVERLAY_FILE=nxp/mcxn947_internal_flash.overlay"
34
+ - platform:mcx_n9xx_evk/mcxn947/cpu0:"DTC_OVERLAY_FILE=nxp/mcxn947_internal_flash.overlay"
35
+ harness : console
36
+ harness_config :
37
+ type : multi_line
38
+ regex :
39
+ - " Id: 1, Address: 192.168.1.1"
40
+ - " Id: 2, Key: ff fe fd fc fb fa f9 f8"
41
+ - " Id: 3, Reboot_counter: (.*)"
42
+ - " Id: 4, Data: DATA"
43
+ - " Id: 5, Longarray: 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b \
44
+ 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 \
45
+ 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 \
46
+ 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 \
47
+ 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f"
You can’t perform that action at this time.
0 commit comments