-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
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
Is there a version of a TOML parser for Arduino? #82
Comments
For toml11, there isn't. If you have any idea to get rid of the difficulty, PRs and suggestions are welcome. |
I was just curious. I don't have the skill to make something of that nature myself. Otherwise I would have. I just stumbled across TOML and I like its features and when I looked around I didn't see arduino support. Arduino uses C++ but I don't know enough about the differences in infrastructure to be able to port something like this to it. |
Well I do have some skills, just enough to make it work, not wholly understanding the process though 😅 Some tips for people stumbling across this - i used platformio with Arduino framework to make it work:
xTaskCreate( TomlTask, "toml task",
65536, NULL, 6, NULL );
https://github.com/cr1tbit/antController-fw for reference how to make it work |
I took a stab at getting it to run in the Arduino IDE but I just don't know enough.
The text was updated successfully, but these errors were encountered: