Can GLICOL run on an embedded Arm Cortex M4/M7? #77
-
I've got a couple of Teensy 4.1 boards and a couple of Electro-Smith Daisy units. The Daisy ones have audio hardware; the Teensys are just the bare boards, although I could buy audio add-ons for them if they'll run GLICOL. Both have SD card capability. The Teensy is a 600 MHz Arm Cortex M7 with 7936K flash and 1024K RAM. The Daisy is a 480 MHz Arm Cortex M7. I'm not sure how much flash and RAM the Daisy has; it's not on their website. Both are programmable / flashable via the Arduino IDE. Can GLICOL run on either or both of these? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Thank you for your question. You get already get started by reading: |
Beta Was this translation helpful? Give feedback.
-
Thanks! I guess I need to buy one of those maker kits with potentiometers. :-) I already have three Belas and plenty of breadboards. |
Beta Was this translation helpful? Give feedback.
Thank you for your question.
I also have STM32F3 and some ESP boards.
In theory it should be able to, but it may require some hacking for now. I will try to test and make the process easier in the coming days.
The key is to make Glicol support
no_std
. Yet two dependencies of Glicol,petgraph
andpest
have not supportedno_std
in main releases. There are already some successful forks of these two packages that successfully implementedno_std
but not yet merged.pest-parser/pest#498
petgraph/petgraph#370
I will test by depending on the forked git soon.
You get already get started by reading:
https://github.com/rust-embedded/awesome-embedded-rust
Especially the:
The Embedded Rust Book
For au…