Lines Matching full:it
7 * and writing data it also shows how data can be deleted from flash.
20 * Every reboot increases the values of the reboot_counter and updates it in
27 * basic nvs_read() function as it has been deleted. It is possible to read the
102 * read it from flash, since we don't know the size read the in main()
106 if (rc > 0) { /* item was found, show it */ in main()
108 } else {/* item was not found, add it */ in main()
114 /* KEY_ID is used to store a key, lets see if we can read it from flash in main()
117 if (rc > 0) { /* item was found, show it */ in main()
123 } else {/* item was not found, add it */ in main()
124 printk("No key found, adding it at id %d\n", KEY_ID); in main()
136 * if we can read it from flash in main()
139 if (rc > 0) { /* item was found, show it */ in main()
142 } else {/* item was not found, add it */ in main()
143 printk("No Reboot counter found, adding it at id %d\n", in main()
149 * if we can read it from flash, since we don't know the size read the in main()
154 /* item was found, show it */ in main()
162 /* entry was not found, add it if reboot_counter = 0*/ in main()
164 printk("Id: %d not found, adding it\n", in main()
172 * it from flash in main()
176 /* item was found, show it */ in main()
183 /* entry was not found, add it if reboot_counter = 0*/ in main()
185 printk("Longarray not found, adding it as id %d\n", in main()