Ladislas de Toldi

Results 99 comments of Ladislas de Toldi

For people using zsh installed via homebrew, I confirm that the latest version resolves the issue. You can install `--head` by running the following: ```shell $ brew unlink zsh $...

Would that mean that the space added for interrupt context and other structures is more than needed?

Thanks a lot Max for your answer and insights! It's great to see how things changed and evolved along the journey. It helps put our own struggles and/or successes in...

You just clone and open the project in VSCode ;) If you mean "how do I get autocompletion and stuff in vscode using this?", then I'm afraid I can't help...

Thanks @JDuchniewicz for the PR! I don't personally use SAMD but I'm happy to add the info here. Could you update the description for it to work also on macOS?...

Thanks @JDuchniewicz The `LTO_PLUGIN_DIR = $(HOME)/.arduino15/packages/...` doesn't look very cross platform as it does not exist on macOS. Are those changes upstream already? If so, I'll just rebase my fork...

I'd love to work on that! :) Having to declare in your main sketch all the libs that your libs use is kind of cumbersome and prone to errors... @sudar...

@sudar I'm doing some tests, is it possible to create a test branch in your repo I could PR to so that people could test as well? :) @matthijskooijman can...

@matthijskooijman well you can organize your code as you like if you use the Makefile, for [example...](https://github.com/WeAreLeka/Bare-Arduino-Project) But all your libraries are at the same place? something like: ``` Lib-folder/...

Thank you very much @sudar :) I'll push in tonight or tomorrow. Right now, auto-detection works. The work around is to use: ``` Makefile ARDUINO_LIBS += $(notdir $(wildcard $(USER_LIB_PATH)/*)) #...