From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29535 invoked by alias); 25 Feb 2002 22:10:02 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 29299 invoked from network); 25 Feb 2002 22:09:56 -0000 Received: from unknown (HELO corb.mc.mpls.visi.com) (208.42.156.1) by sources.redhat.com with SMTP; 25 Feb 2002 22:09:56 -0000 Received: from grante.comtrol.com (grante.dsl.visi.com [208.42.141.248]) by corb.mc.mpls.visi.com (Postfix) with SMTP id E538881D2 for ; Mon, 25 Feb 2002 16:09:55 -0600 (CST) Received: (qmail 14873 invoked by uid 500); 25 Feb 2002 22:17:07 -0000 Date: Mon, 25 Feb 2002 14:10:00 -0000 From: Grant Edwards To: Charles-Henri Balet Cc: gdb@sources.redhat.com Subject: Re: GDB using Angel error on an OKI board Message-ID: <20020225161706.A14785@visi.com> References: <005801c1bd6a$b6545e10$0401a8c0@CHARLESHENRI> <20020225102723.A11481@visi.com> <000f01c1ebb8$84dbc630$0401a8c0@CHARLESHENRI> <20020225131735.A13155@visi.com> <000501c1be32$8ea031f0$0401a8c0@CHARLESHENRI> <20020225141141.A13658@visi.com> <003001c1be39$fc62ef00$0401a8c0@CHARLESHENRI> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <003001c1be39$fc62ef00$0401a8c0@CHARLESHENRI>; from charles-henri@bluewin.ch on Mon, Feb 25, 2002 at 09:21:15PM +0100 X-SW-Source: 2002-02/txt/msg00312.txt.bz2 > I have obtain the serial TX and RX of the port for the ANGEL > ARM SDT 2.50, the code of start the sending and receiving are > the next : > 000000 1c 14 01 c5 c4 01 15 01 ff ff ff ff ff ff ff ff 85 49 c7 47 1d 1c 08 c5 > 000018 c4 04 4b be c7 38 e1 10 53 74 1d 1c 24 03 c6 c5 01 05 03 ff ff ff ff ff > 000030 ff ff ff 01 c0 01 80 25 1b 53 f9 16 d3 1d 1c 14 03 c7 c6 01 06 03 ff ff [...] That looks like ADP framing, 0x1c starts a frame, 0x1d ends a frame, and 0x1b is the escape character (toggles bit 4 in the next byte). But, what's inside the frame doesn't match up with the ADP frame format. Parts of it look OK, but there are bytes missing. It looks like whatever you used to capture the data has discarded all of the bytes with a value of 0x00. -- Grant Edwards grante@visi.com