From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail From: Paul Rubin Newsgroups: comp.lang.ada Subject: Re: ANN: Cortex GNAT RTS 2018-07-15 Date: Tue, 17 Jul 2018 12:46:48 -0700 Organization: A noiseless patient Spider Message-ID: <87fu0hprvb.fsf@nightsong.com> References: <87in5gf9nt.fsf@nightsong.com> <87sh4ipq0q.fsf@nightsong.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: h2725194.stratoserver.net; posting-host="78cf2c98f59dd8f751126382ec31993c"; logging-data="26029"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/ATtCPAF5B/JHGfsp0/A31" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) Cancel-Lock: sha1:PvRt53uJHuINHK5I9c1frZ19xh0= sha1:iT2wsbjSXoOde2j4odbzgpOD5lM= Xref: reader02.eternal-september.org comp.lang.ada:53878 Date: 2018-07-17T12:46:48-07:00 List-Id: Simon Wright writes: >> I have two Trinket M0's > Just a little bit too tiny for me! (8K flash, 512b ram). Candidates for > a ZFP, I think. 8k flash is on the original Trinket with the ATTiny85. The Trinket M0 has 256k flash and 32k ram and when you plug it into a USB port out of the box, it's already running CircuitPython and you can type Python code at it interactively, and you can also drag and drop files onto it since it also presents a USB flash drive interface. It's great. See: https://www.adafruit.com/product/3500 There is a slightly bigger version called the Itsy Bitsy that's basically the same board with more I/O pins and a 2MB SPI flash added: https://www.adafruit.com/product/3727 And a version of the Itsy Bitsy with a Cortex M4, 512k of on-chip flash and 192k of ram, plus the SPI flash: https://www.adafruit.com/product/3800 There's also the even fancier Feather series, with more stuff on the M0 and M4 versions including an RTC crystal and a built-in JST connector and lipo charger, so you can connect a lipo cell that automatically charges whenever the board is connected to USB. A completely no-fuss way to make a low powered portable gadget. Unfortunately there's no Trinket M4 in the works because the M4 processor has a bigger package that won't fit on the Trinket board. These boards are cool as hell and they make it leagues easier to get started with embedded programming. You don't need any toolchain on your PC except a text editor. It's like an old Forth system but much nicer.