ESP32 NVS Keys Part 2
In a previous post, I investigated the limits to what NVS accepted as a valid ASCII string. While I'm certain I did not iterate over ALL the acceptable possibilities, the…
In a previous post, I investigated the limits to what NVS accepted as a valid ASCII string. While I'm certain I did not iterate over ALL the acceptable possibilities, the…
This began as a four- or five-question exploration of the Non-volatile storage library for the ESP32. However, the queries, simple at first, grew in depth as I probed their bounds.…
tl;dr - For the ESP32 microcontrollers, ALWAYS terminate a printf() function call with a newline character. Consider the humble printf("Hello world!\n") statement. This elementary function call is the poor man's…