I was trying to save program space in my microcontroller firmware using nanopb. I decided to try the #define PB_NO_ERRMSG option. It seemed to work - except it only saved 24 bytes of program space.
// find line 56 #define SSID "Input your wifi ssid" #define PASSWORD "Input your wifi password" // find line 65 #define ENCODE_MD5_CHANNEL "encodeByMD5" #define DECODE_MD5_CHANNEL "decodeByMD5" build ...