C++/Go Library Loading
Imagine you only have access to a library (.a) and its header (.h) file. You can see the functions and their signatures, but you just can't figure out how to…
Imagine you only have access to a library (.a) and its header (.h) file. You can see the functions and their signatures, but you just can't figure out how to…
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…