Coder Social home page Coder Social logo

Comments (3)

ToruNiina avatar ToruNiina commented on May 14, 2024

For toml11, there isn't.
Actually, I'm not familiar with Arduino, so I totally don't have any idea about this. Sorry.

If you have any idea to get rid of the difficulty, PRs and suggestions are welcome.

from toml11.

Alacritous avatar Alacritous commented on May 14, 2024

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.

from toml11.

cr1tbit avatar cr1tbit commented on May 14, 2024

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:

  1. Arduino core for esp32 uses GCC 8.4.0, which could not compile the library at the start. I had to provide a little patch (branched from 3.7.0, I don't think worth merging upstream)

cr1tbit@cbd4df7

  1. This library is enormous (measuring in code size) compared to usual arduino libraries, in my case the compiled binary wouldn't fit into the default flash layout (with 2 flash banks for OTA update). Can be fixed by setting:

board_build.partitions = huge_app.csv

  1. Tomls tend to be big. The main arduino setup-loop has stack size only 8k or so, and it's hardcoded into arduino core. In my case I moved toml config handling to a separate task like this:
    xTaskCreate( TomlTask, "toml task",
      65536, NULL, 6, NULL );
  1. Platformio can natively include this lib, by simply putting it as one of the dependencies. You can do it like this (my fork compiles fine)
lib_deps = 
        [...]
        https://github.com/cr1tbit/toml11.git#cbd4df71a9f853c50baeedf31c9a106e11409a19

https://github.com/cr1tbit/antController-fw for reference how to make it work

from toml11.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.