That micropython looks great.
Did you get one of their boards?
I have a "FEZ Cerb40" (STM32F405 I believe)
https://www.ghielectronics.com/catalog/product/353
that I think I could run it on but without SD card I'm not sure how easy it would be to get files onto it.
Would you know?
Thanks and best,
Cat
Did you get one of their boards?
I have a "FEZ Cerb40" (STM32F405 I believe)
https://www.ghielectronics.com/catalog/product/353
that I think I could run it on but without SD card I'm not sure how easy it would be to get files onto it.
Would you know?
Thanks and best,
Cat
To: AVR-Chat@yahoogroups.com
From: dhylands@gmail.com
Date: Fri, 2 May 2014 09:07:52 -0700
Subject: Re: [AVR-Chat] Where has everyone gone?
STM seems to have a nice peripheral library. If you're looking for something that works on more than one family, then I recommend the mbed library. It now covers many more devices than just the mbed board. https://github.com/mbedmicro/mbed It seems like all of the ARM vendors now have pretty decent "getting started" boards which are inexpensive.
I'm still a command line/makefile/use my editor as an IDE type of person, so I've never missed AVR Studio (also I favor linux environments for SW development). Eclipse seems to be the IDE of choice when moving away from the vendor supplied ones, although I've never really played with it.
The gcc toolchain is common amongst the ARM chips, so at least that part should be similar.
Dave Hylands
From: dhylands@gmail.com
Date: Fri, 2 May 2014 09:07:52 -0700
Subject: Re: [AVR-Chat] Where has everyone gone?
Hi Mark,
I've recently been playing with MicroPython (micropyton.org) which runs on an STM32F405 (Cortex-M4 with FPU). I really like the builtin DFU bootloader (no programmer required).The AVR is still very appropriate for certain environments, but as a hobbyist, I'd rather program in something a bit higher level than C (hence the interest in MicroPython). There is also eLua and JavaScript available now for some of the cortex chips as well.