Lines Matching +full:flash +full:- +full:id
1 .. zephyr:code-sample:: nvs
2 :name: Non-Volatile Storage (NVS)
3 :relevant-api: nvs_high_level_api
5 Store and retrieve data from flash using the NVS API.
11 module for non-volatile (flash) storage. In this application,
12 a counter is incremented on every reboot and stored in flash,
18 * A board with flash support
28 .. zephyr-app-commands::
29 :zephyr-app: samples/subsys/nvs
31 :goals: build flash
41 .. code-block:: console
43 ***** Booting Zephyr OS v1.12.0-rc1-176-gf091be783 *****
45 [fs/nvs] [DBG] _nvs_sector_init: f->write_location set to c
47 [fs/nvs] [INF] nvs_mount: write-align: 1, write-addr: c
48 [fs/nvs] [INF] nvs_mount: entry sector: 0, entry sector ID: 1
49 No address found, adding 192.168.1.1 at id 1
50 No key found, adding it at id 2
51 No Reboot counter found, adding it at id 3
52 Id: 4 not found, adding it
53 Longarray not found, adding it as id 4
57 ***** Booting Zephyr OS v1.12.0-rc1-176-gf091be783 *****
59 [fs/nvs] [INF] nvs_mount: write-align: 1, write-addr: c7
60 [fs/nvs] [INF] nvs_mount: entry sector: 0, entry sector ID: 1
62 Id: 2, Key: ff fe fd fc fb fa f9 f8
63 Id: 3, Reboot_counter: 1
64 Id: 4, Data: DATA
65 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