This sketch does not compile on Arduino 1.8.7, producing the following error:
G:/Arduino/TAFFY/TAFFY_V1.3/TAFFY_V1.3.ino:65:19: error: 'ricetta' was not declared in this scope
This happens because the automatically generated function prototypes are inserted too early, before struct ricetta is defined, as shown in the preprocessed sketch.
This didn't happen in Arduino 1.8.5, which put the prototypes just before the setup() function. Preprocessor output is here.
This issue was raised by user gianlucaf on the Arduino forums.
This sketch does not compile on Arduino 1.8.7, producing the following error:
This happens because the automatically generated function prototypes are inserted too early, before
struct ricettais defined, as shown in the preprocessed sketch.This didn't happen in Arduino 1.8.5, which put the prototypes just before the setup() function. Preprocessor output is here.
This issue was raised by user gianlucaf on the Arduino forums.