No response ?!?!
Once again, is there any resource or reference document to install the compile toolchain to compile ATSAMD's base MicroPython ?
Dominique
Wio Terminal with ATSAMD51 + Realtek RTL8720DN + 2.4 screen + etc
-
- Posts: 123
- Joined: Fri Aug 19, 2016 11:55 am
Re: Wio Terminal with ATSAMD51 + Realtek RTL8720DN + 2.4 screen + etc
I don’t know but I assume the same toolchain as used to build CircuitPython should get you going. There’s a very detailed and up-to-date guide on that. As to building MicroPython, I assume the procedure is similar to other ARM-based targets such as STM32.
Re: Wio Terminal with ATSAMD51 + Realtek RTL8720DN + 2.4 screen + etc
Not that I'm aware of - but I know of two people that have built the SAMD port for the XIAO (SAMD21) recently, which is similar.
You can follow the STM32 guide for the dependencies (cross compilers is the same: arm-none-eabi-gcc) and then something like:
Code: Select all
> make -C mpy-cross
> cd ports/samd
> make submodules
> make BOARD=ADAFRUIT_ITSYBITSY_M4_EXPRESS
I haven't built for this board before but hopefully that will give you a start - let me know if you're still stuck.
I'll add 'Update README.md for SAMD port' to my todo list...
