This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Problem with getchar / gets / fgets


I'm using eCos from latest CVS repository, in default configuration. So I'm
using:
CYGPKG_IO_SERIAL_TTY = 1
CYGPKG_IO_SERIAL_HALDIAG = 1
CYGDAT_IO_SERIAL_TTY_CONSOLE = /dev/ttydiag
CYGPKG_IO_SERIAL_TTY_TTYDIAG = 1
Others options of component CYGPKG_IO_SERIAL are no active or default value
are 0

What is the real serial driver?

I'm not using GDB. I just launch my shell application with redboot and
communicate with my shell with minicom (as same as redboot).

Nicolas

-----Original Message-----
From: Andrew Lunn [mailto:andrew@lunn.ch]
Sent: Tuesday, September 14, 2004 3:12 PM
To: Nicolas Brouard
Cc: ecos-discuss@ecos.sourceware.org
Subject: Re: [ECOS] Problem with getchar / gets / fgets


On Tue, Sep 14, 2004 at 02:37:23PM -0400, Nicolas Brouard wrote:
> Hi,
>
> I'm using a board based on a MPC860 processor.
> I try to make a shell application, but the getchar function (or gets, or
> fgets(stdin)) doesn't work very well. Each character requires to be hit
> about 5 to 10 times after which it shows up.
>
> The test I did is very simple and works perfectly with the powerpc
simulator
> target (psim).
> ------------------------------
> #include <stdio.h>
> static char line[256];
> int main(void)
> {
>     printf("hello\n");
>     while(1)
>     {
>         printf("toto> ");
>         gets(line);
>         printf("%s", line);
>     }
>     return 0;
> }
> ------------------------------
>
> The same problem was posted before in the mailing list, and nobody
answers.
> http://sources.redhat.com/ml/ecos-discuss/2003-12/msg00321.html
>
> Does anybody have an idea about that?

What serial driver are you using? haldiag or the real serial driver?
Is the port being shared with gdb or is it a dedicated port?

        Andrew



-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]