-
Notifications
You must be signed in to change notification settings - Fork 27
Thanks #2
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
Comments
Hey @vshymanskyy, happy to hear that :). Good question re tree-shaking – I believe that tree-shaking (coming from JS world) is essentially the same as what If you want to read more about it, feel free to checkout section 2.5 in my thesis. That section is dedicated to code-size reduction and specifically section 2.5.6 is dedicated to using |
Also thanks from my side :) Having support for Teensy 4.0 in the future would be great as its next to Arduino (where I can't find a board with 2048KiB min.) one of the most used embedded boards. |
Just wanted to say thanks too, this looks really cool and I hope I'll find some project to work in it soon. |
Thanks all of you for being interested in this project! ;) I will try to be as helpful as possible in adding support for more boards. Yes, Teensy 4.0 seems like a good fit! In general, adding support for another board does not require modifications to the toolchain and requires writing a HAL and small modification of the |
A small update re Teensy 4.0: Inspired by your comment @flocked, I've ordered Teensy 4.0 as I believed that it would be quite easy to add support for it. However, I just found out that the board does not provide any access to a debug interface (JTAG/SWD). I am a bit disappointed, the board looks great otherwise, but considering it offers 2 MB of FLASH (so it can fit quite a complex program), but has no real way to debug such a program? 🤨 I am not feeling adventurous enough to start using this board, as I can't imagine that if there would be any toolchain-related bug and I would have to debug it using print() statements and blinking the LEDs 🙈. I hope the next Teensy board will provide the interface. On the other side, I'm expecting to receive Pyboard D-series (STM32F767) any day now. It features 4 MB of FLASH, WiFi+BT and more! 👀 |
I have read your thesis with great pleasure. It is very well written end explains all the details of your process very well. We are currently working on a project opensforyou.com and where using particle.io for this until they decided to stop supporting mesh. I then decided that I would use my knowledge about swift and build the product in swift. Your project is a super starting point for this and I am looking forward to the support for the STM32F767 and would like to help too. I can offer help in 3 ways.
|
Thanks for releasing.
Was looking for it just yesterday! ^_^
Regarding code size, is it possible to apply tree-shaking?
The text was updated successfully, but these errors were encountered: