public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] eCos Configuration Tool
@ 2005-09-18 22:13 Emilio Monti
  2005-09-19  2:32 ` Andrew Lunn
  0 siblings, 1 reply; 9+ messages in thread
From: Emilio Monti @ 2005-09-18 22:13 UTC (permalink / raw)
  To: ecos-discuss

Is there any plan to convert the "eCos Configuration Tool" in Java ?
It would also be usefull to better integrate the eCos configuration in Eclipse.

There are plenty of "open source" projects for "Parser Generator" and
"Code Generator" in Java that could form a good basis for a project
like that.

It could be an advantage also for the GUI.
Java mantains portability, like wxWindows, but enances graphics.

For the manage of makefiles and cygwin/unix tools there is a good code
basis in the eclipse CDT plugins.

If there's any project like that I would be happy to help.

Best regards,
Emilio Monti.

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

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [ECOS] eCos Configuration Tool
@ 2001-07-19  8:45 diem.b.dang
  2001-07-19 12:10 ` Jonathan Larmour
  0 siblings, 1 reply; 9+ messages in thread
From: diem.b.dang @ 2001-07-19  8:45 UTC (permalink / raw)
  To: ecos-discuss

Hi All;

     I'm trying to do the memory test on the board with 256k SRAM; the code is
very simple as start a location write to it and read right out by printf:

....
#define START_RAM_ADD  ((volatile U8 *) 0x00000000)
....
U8 *ram_add;
.....
 ram_add=START_RAM_ADD;   /* assign the pointer to the beginning of add */

 for(n=0;n<1000;n++)  {
       *ram_add = 0xAD;                      /* Write to the address a hex value
 AD */
       printf ("%d RAM address %08X %02X \n", n, ram_add, *ram_add);
       ram_add++;                                  /* Increase the address
location */
}

The problem is that the output is always stop at 0x340 sometime at 0x345 (around
800 some bytes...)

1/ Is the problem come from my eCos configuration setup limit the amonut of RAM;
if yes, where do I change in the configuration; or what item in configuratool
should be change.

2/ Does eCos has ready code to run for RAM test, If yes please show where can I
get the code.

Any Assistance is Very Appreciated;
Diem


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2005-09-19 14:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-18 22:13 [ECOS] eCos Configuration Tool Emilio Monti
2005-09-19  2:32 ` Andrew Lunn
2005-09-19  7:44   ` Emilio Monti
2005-09-19  9:30   ` Andrew Voelkel
2005-09-19 12:54   ` Dirk Husemann
2005-09-19 14:37     ` Andrew Lunn
2005-09-19 15:59     ` [ECOS] " John Dallaway
  -- strict thread matches above, loose matches on Subject: below --
2001-07-19  8:45 [ECOS] " diem.b.dang
2001-07-19 12:10 ` Jonathan Larmour

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).