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!feeder.eternal-september.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Tero Koskinen Newsgroups: comp.lang.ada Subject: Re: Ada in command / control systems Date: Mon, 25 Feb 2019 21:53:10 +0200 Message-ID: <5f426c1d-199a-2314-82af-11298f514fd4@iki.fi> References: <2199b15b-d704-403f-a6c4-00fab29792d5@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: individual.net 1dWWEo6SFVmNmkGYv/y9LAcKJQFXK50gT451NthIzAXkq/NFWv Cancel-Lock: sha1:G06r0pXZJ7XXZtlRgAkvolaWmmM= User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 PostboxApp/6.1.10 In-Reply-To: Content-Language: en-US Xref: reader01.eternal-september.org comp.lang.ada:55661 Date: 2019-02-25T21:53:10+02:00 List-Id: Hi, russ lyttle wrote on 25.2.2019 15.50: > There is some support for STM (thanks Simon Wright) but hasĀ  anyone > tried to write an Ada program for an AT Tiny? I have done some in the past: http://arduino.ada-language.com/tag/attiny.html http://arduino.ada-language.com/ In short, attiny2313 is probably the smallest chip (2kB flash, 128 byte RAM) which makes sense for (AVR-)Ada programs. attiny4313 (4kB flash, 256 byte RAM) has enough resources for many slightly more complex things. And I haven't yet ran out of RAM/flash on atmega328p (Arduino boards) in my projects. -Tero