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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,87b54dbabc658fa2,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.224.217.195 with SMTP id hn3mr26122709qab.5.1366853272790; Wed, 24 Apr 2013 18:27:52 -0700 (PDT) X-Received: by 10.49.60.170 with SMTP id i10mr3409472qer.41.1366853272714; Wed, 24 Apr 2013 18:27:52 -0700 (PDT) Path: ef9ni16888qab.0!nntp.google.com!gp5no5913833qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 24 Apr 2013 18:27:52 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=189.110.10.185; posting-account=TRgI1QoAAABSsYi-ox3Pi6N-JEKKU0cu NNTP-Posting-Host: 189.110.10.185 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <931385b2-3520-4d7a-b56f-6d0d0b06d467@googlegroups.com> Subject: AVR Usart send number string with no 'Image From: "Rego, P." Injection-Date: Thu, 25 Apr 2013 01:27:52 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2013-04-24T18:27:52-07:00 List-Id: I am trying to send a numeric string over Usart in an AVR ATmega2560, using= avr-elf-windows. So I coded a function Put (Data : String) which works wel= l, and a function Put (Data : Unsigned_8) which actually sends the Characte= r represented by Data : Unsigned_8.=20 But I need now a function which sends really the number, not its equivalent= character. So I think I could convert the number into a string and send it= . The problem is that avr-elf-windows has no 'Image available, so I have to= implement it by hand. How could I do it? Regards