We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to store a struct made of an array of other struct, something like this:
typedef struct { boolean valid; char label[20]; char name[20]; } A; typedef struct { A arrayOfAs[50]; } B; .... FlashStorage(flash_B_store, B);
Is there a way to do it using this library?
The text was updated successfully, but these errors were encountered:
using something like this:
typedef struct { boolean valid[50]; char label[50][20]; char name[50][20]; } B;
could actually be a work around...
Sorry, something went wrong.
No branches or pull requests
I need to store a struct made of an array of other struct, something like this:
Is there a way to do it using this library?
The text was updated successfully, but these errors were encountered: