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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,327a42486109b512,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Received: by 10.224.207.66 with SMTP id fx2mr2949658qab.7.1354840894379; Thu, 06 Dec 2012 16:41:34 -0800 (PST) Received: by 10.49.48.41 with SMTP id i9mr767614qen.36.1354840894358; Thu, 06 Dec 2012 16:41:34 -0800 (PST) Path: gf5ni48613358qab.0!nntp.google.com!c8no1803786qao.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 6 Dec 2012 16:41:34 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=201.74.168.218; posting-account=xhShowoAAABwJEaFCs7_gHiUlZrBvRhD NNTP-Posting-Host: 201.74.168.218 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <71687703-4ed2-4cbb-8996-ff973474f586@googlegroups.com> Subject: Interruption Handling using zfp compilation flag From: =?ISO-8859-1?Q?Vin=EDcius_Franchini?= Injection-Date: Fri, 07 Dec 2012 00:41:34 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-12-06T16:41:34-08:00 List-Id: Hi guys, my name is Vin=EDcius and I'm doing a master degree. My thesis is a simpli= fied on-board computer for an satellite. I must implement some scheduling a= nd package analysis functions. As I need to work with a real time system, I= 'm using the zfp flag for compilation. I tried to implement some interrupti= ons using sentences like this: procedure Receive_USART; -- Address the interruption handler =09 pragma Machine_Attribute (Entity =3D> Receive_USART, Attribute_Name =3D> "signal"); pragma Export (Convention =3D> C, Entity =3D> Receive_USART, External_Name =3D> "__vector_26"); --USART0_RXC Using Proteus (ISIS Professional 6.7 SP2), I'm debugging the algorithm. The= initialization of the interruption is right, but when the interruption occ= ur, it isn't handling to the procedure.=20 Do I need to do something more to handle the procedure when the interruptio= n occur ? Do you fellows have any other simple way to handle interruptions = ? Thanks very much for your help....