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!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!gandalf.srv.welterde.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: Tero Koskinen Newsgroups: comp.lang.ada Subject: AVR-Ada 1.2.2 binary rpm for Fedora 25 Date: Fri, 11 Nov 2016 18:35:44 +0200 Organization: JSA Research & Innovation Message-ID: NNTP-Posting-Host: 37-136-48-150.rev.dnainternet.fi Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: franka.jacob-sparre.dk 1478882098 16474 37.136.48.150 (11 Nov 2016 16:34:58 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Fri, 11 Nov 2016 16:34:58 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 X-Mozilla-News-Host: news://news.sparre-andersen.dk:119 Xref: news.eternal-september.org comp.lang.ada:32282 Date: 2016-11-11T18:35:44+02:00 List-Id: Hi, I created AVR-Ada 1.2.2[1] rpm for Fedora 25 (x86_64). You can get it from my fedora.ada-language.com server, by creating a new /etc/yum.repos.d/fedora-adalanguage.repo with following contents: [fedora-adalanguage] name=Tero's Fedora RPM repository for Ada packages baseurl=http://fedora.ada-language.com/repo/$releasever/$basearch enabled=1 You can install the rpm with command: sudo dnf install avr-ada --nogpgcheck The rpm package is completely unofficial (not endorsed by Fedora or AVR-Ada projects), but since creating it isn't that easy, I every now and then try to provide new version. The binaries are installed to /opt/avr-avr-122 and are usable out of the box. For example, try: export PATH=/opt/avr-avr-122/bin:$PATH hg clone https://bitbucket.org/tkoskine/arduino-blog cd arduino-blog/examples/hello-uart make After "make", you will have hello.hex in the current directory and you can upload it to Arduino with avrdude (not part of the package): sudo avrdude -c arduino -p atmega328p -P /dev/ttyACM0 \ -b 115200 -U flash:w:hello.hex Yours, Tero PS. Fedora 25 is not yet released, I used beta version. [1] Well, actually the latest git version, but it is almost same.