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=0.7 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM,REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6d9cd34ea84ec42b,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.21.229 with SMTP id y5mr8485693pbe.1.1319055260691; Wed, 19 Oct 2011 13:14:20 -0700 (PDT) Path: d5ni33136pbc.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: "Rego, P." Newsgroups: comp.lang.ada Subject: Basic installation problem with avr-ada for Windows Date: Wed, 19 Oct 2011 13:12:34 -0700 (PDT) Organization: http://groups.google.com Message-ID: <26601238.585.1319055154087.JavaMail.geo-discussion-forums@yqoo7> Reply-To: comp.lang.ada@googlegroups.com NNTP-Posting-Host: 201.7.145.1 Mime-Version: 1.0 X-Trace: posting.google.com 1319055260 27060 127.0.0.1 (19 Oct 2011 20:14:20 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 19 Oct 2011 20:14:20 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=201.7.145.1; posting-account=TRgI1QoAAABSsYi-ox3Pi6N-JEKKU0cu User-Agent: G2/1.0 X-Google-Web-Client: true Xref: news2.google.com comp.lang.ada:14095 Content-Type: text/plain; charset=ISO-8859-1 Date: 2011-10-19T13:12:34-07:00 List-Id: Hi, I'm trying to install avr-ada for Windows but got some problem. So I did: 1) Got and run installer from AVR-Ada site. It install the folder C:\avr-ada with the tools. 2) So I put on the PATH env variable c:\avr-ada\bin 3) Created the code examples build.gpr and led_on.adb on the folder C:\avrtest -- build.gpr with "avr.gpr"; project Build is for Main use ("led_on"); for Languages use ("Ada"); for Object_Dir use "obj"; for Exec_Dir use "."; package Builder renames AVR.Builder; package Compiler renames AVR.Compiler; package Binder renames AVR.Binder; package Linker renames AVR.Linker; for Source_Files use ("led_on.adb"); end Build; -- led_on.adb with AVR; use AVR; with AVR.MCU; procedure LED_On is LED : Boolean renames MCU.PortB_Bits (3); begin MCU.DDRB_Bits := (others => DD_Output); LED := Low; end LED_On; So what did I forget to set?