public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
[ECOS] Question about the data item meaning in Real-time characterization table. Ave, Min? under Confidence Thanks
 2002-07-12  4:17 UTC 

[ECOS] how breakpoint instruction execute
 2002-07-12  4:16 UTC 

[ECOS] Question about the eCOS characteristic?
 2002-07-12  2:48 UTC 

[ECOS] how to implememt my assert and trace?
 2002-07-12  0:40 UTC 

[ECOS] Where in ecos is the external interrupt handler routine
 2002-07-11 21:44 UTC 

[ECOS] Problem in DHCP requests
 2002-07-11 21:43 UTC  (8+ messages)
  ` [ECOS] Problem in DHCP requests Where is arpcom???
      ` [ECOS] Where is arpcom??? how to add this header file
  ` [ECOS] Where in ecos is the external interrupt handler routine

[ECOS] FEC interrupt registration problem
 2002-07-11 21:34 UTC 

[ECOS] Problem Problem Problem (i386)
 2002-07-11 21:17 UTC 

[ECOS] Problem Problem Problem (i386)
 2002-07-11 21:15 UTC 

[ECOS] Big endian ARM HAL_WRITE_UINT8 problem (ecos 1.3.1)
 2002-07-11 20:22 UTC  (4+ messages)

[ECOS] DSR problem
 2002-07-11 18:53 UTC  (2+ messages)

[ECOS] malloc/new in DSRs
 2002-07-11 14:18 UTC  (2+ messages)

[ECOS] cyg_user_start() in a library
 2002-07-11 13:05 UTC 

[ECOS] Building eCos on a I686 for a Ix86 Target
 2002-07-11 10:32 UTC  (2+ messages)

[ECOS] Big endian ARM HAL_WRITE_UINT8 problem (ecos 1.3.1)
 2002-07-11  8:35 UTC  (2+ messages)

[ECOS] flash driver interface questions
 2002-07-11  6:58 UTC 

[ECOS] MPC860: Enabling Datacache does not work
 2002-07-11  6:46 UTC 

[ECOS] typos in standalone eth_drv
 2002-07-11  4:56 UTC 

[ECOS] problem of serial h/w buffer in ecos
 2002-07-11  3:31 UTC 

[ECOS] how breakpoint instruction execute
 2002-07-11  2:38 UTC  (2+ messages)

[ECOS] Query
 2002-07-11  2:25 UTC  (3+ messages)

[ECOS]how to add net package
 2002-07-11  2:05 UTC 

[ECOS] PowerPC FEC interrupt handler problem
 2002-07-11  1:17 UTC 

[ECOS] PowerPC FEC interrupt handler problem
 2002-07-11  0:49 UTC  (3+ messages)

[ECOS] Big endian ARM HAL_WRITE_UINT8 problem (ecos 1.3.1)
 2002-07-10 23:52 UTC  (5+ messages)

[ECOS] Interrupt Handler
 2002-07-10 10:36 UTC  (4+ messages)

[ECOS] samsunf-gcc
 2002-07-10  8:04 UTC  (3+ messages)

[ECOS] init_all_network_interfaces problem with new stack
 2002-07-10  5:46 UTC  (2+ messages)

[ECOS] new_net compilation failure
 2002-07-10  5:39 UTC  (5+ messages)

[ECOS] Redboot Console
 2002-07-10  5:13 UTC  (2+ messages)

[ECOS] RE: Using GCC 3.0 with eCos
 2002-07-10  4:42 UTC 

[ECOS] LIBM problem with configtool 1.3.net
 2002-07-10  2:24 UTC 

[ECOS] Compiler bug (arm-elf-gcc)?
 2002-07-10  1:00 UTC 

[ECOS] TCP stack not delaying/piggybacking ACKs?
 2002-07-10  0:57 UTC  (10+ messages)

[ECOS] On linker script
 2002-07-10  0:14 UTC 

[ECOS] errno problem building FreeBSD stack for viper
 2002-07-09 10:39 UTC  (3+ messages)

[ECOS] Problem using SERIAL_GENERIC_16X5X serial driver
 2002-07-09  8:16 UTC  (5+ messages)

[ECOS] (ecos)-problem
 2002-07-09  7:37 UTC  (2+ messages)

[ECOS] Re: cygpcre.dll solved?
 2002-07-09  7:32 UTC 

[ECOS] (ecos)-problem
 2002-07-09  7:20 UTC 

[ECOS] Gary Thomas wrote: On Tue, 2002-07-09 at 07:36, brenner joel wrote: Hi all! I'm trying to use the SERIAL_GENERIC_16X5X serial driver for my custom target. (I've used arm/pid serial driver as example) When I compile the kernel I've the following error message: /home/brenner/ecos/packages/devs/serial/generic/16x5x/current/src/ser_16x5x.c /home/brenner/ecos/packages/devs/serial/generic/16x5x/current/src/ser_16x5x.c:213:44: cyg/io/arm_rms_extern_ser.inl: No such file or directory and this is right because no inline file is placed cyg/io/. In the cdl file of rm_rms_extern_ser following paths are defined ... define_proc { puts $::cdl_system_header "/***** serial driver proc output start *****/" puts $::cdl_system_header "#define CYGDAT_IO_SERIAL_GENERIC_16X5X_INL <cyg/io/arm_rms_extern_ser.inl>" puts $::cdl_system_header "#define CYGDAT_IO_SERIAL_GENERIC_16X5X_CFG <pkgconf/io_extserial_arm_rms.h>" puts $::cdl_system_header "/***** serial driver proc output end *****/" } ... witch are used to configure the SERIAL_GENERIC_16X5X driver My question is: where I've to define a command witch copies devs/serial/arm/rms/current/include/arm_rms_extern_ser.inl to <cyg/io/arm_rms_extern_ser.inl> and what is this command? Just use the "include_dir" CDL command in the same file that has the "define proc". e.g. include_dir cyg/io This will cause the include files (from the package .../include directory) to be placed in the <cyg/io/...> directory. "include_dir" CDL command is already there : ...... ..... ..... cdl_package CYGPKG_IO_EXT_SERIAL_ARM_RMS { display "RMS extern serial device drivers" parent CYGPKG_IO_SERIAL_DEVICES active_if CYGPKG_IO_SERIAL active_if CYGPKG_HAL_ARM_RMS requires CYGPKG_ERROR include_dir cyg/io description " This option enables the extern serial device drivers for the RMS ." doc redirect/ecos-device-drivers.html cdl_interface CYGINT_IO_SERIAL_GENERIC_16X5X_REQUIRED { display "Generic 16x5x serial driver required" } define_proc { puts $::cdl_header "#define CYGPRI_IO_SERIAL_GENERIC_16X5X_STEP 4" } define_proc { puts $::cdl_system_header "/***** serial driver proc output start *****/" Re:[ECOS]Problem using SERIAL_GENERIC_16X5X serial driver
 2002-07-09  7:03 UTC 

[ECOS] Redboot Question
 2002-07-09  5:57 UTC  (2+ messages)

[ECOS] Serial getc problem
 2002-07-09  3:49 UTC  (3+ messages)

[ECOS] Re: priority tasks and mutex
 2002-07-09  2:17 UTC 

[ECOS] Arm interrupt vector table
 2002-07-08 22:29 UTC  (2+ messages)

[ECOS] Re: priority tasks and mutex
 2002-07-08 21:12 UTC 

[ECOS] Redboot DHCP and gateway support
 2002-07-08 16:50 UTC  (5+ messages)

[ECOS] DiskOnChip flash support
 2002-07-08 14:08 UTC 

[ECOS] why STACK_FRAME_PPC_SIZE was defined 56?
 2002-07-08 13:32 UTC 

[ECOS] microwindows under ecos 2.0
 2002-07-08 13:14 UTC  (2+ messages)

[ECOS] Problem building with networking for i386
 2002-07-08 10:42 UTC  (2+ messages)

[ECOS] priority tasks and mutex
 2002-07-08  8:55 UTC 

[ECOS] Enable Thumb instruction set and interworking
 2002-07-08  8:54 UTC 

[ECOS] Signal handling
 2002-07-08  7:08 UTC  (4+ messages)

[ECOS] mcf5272c3 build error
 2002-07-08  6:45 UTC 

[ECOS] including flash
 2002-07-08  5:55 UTC  (2+ messages)

[ECOS] Unable to execute twothreads.c
 2002-07-08  4:55 UTC 

[ECOS] Couldn't start user program with the old ecos repository
 2002-07-08  4:49 UTC 

[ECOS] Problem building with networking for i386
 2002-07-07 23:54 UTC 

[ECOS] Interrupt doesn't work witth the new ecos repository. ref: ARME7T board
 2002-07-07 22:05 UTC  (2+ messages)

[ECOS] CYGPKG_SDL: there are no version subdirectories
 2002-07-06 13:04 UTC 

[ECOS] why STACK_FRAME_PPC_SIZE was defined 56?
 2002-07-05 22:07 UTC 

[ECOS] about layout of code
 2002-07-05 21:23 UTC 

[ECOS] about layout of code
 2002-07-05 21:23 UTC 

[ECOS] On TRACE and INSTRUMENT of ecos
 2002-07-05 20:43 UTC 

[ECOS] Re: ezmlm warning
 2002-07-05 19:32 UTC 

[ECOS] Using GCC 3.0 with eCos
 2002-07-05 15:14 UTC 

[ECOS] Using GCC 3.0 with eCos
 2002-07-05  8:45 UTC  (2+ messages)

[ECOS] ecos port 8260
 2002-07-05  3:48 UTC 

[ECOS] Fw: Re: [ECOS] Question about the ethernet hardware device driver?
 2002-07-05  1:31 UTC 

[ECOS] On ecos interrupt process
 2002-07-05  1:23 UTC 

[ECOS] Serial getc problem
 2002-07-05  1:14 UTC 

[ECOS] Using GCC 3.0 with eCos
 2002-07-04 13:36 UTC 

[ECOS] Serial getc problem
 2002-07-04 12:58 UTC 

[ECOS] Question about the ethernet hardware device driver?
 2002-07-04 10:32 UTC 

[ECOS] Serial getc problem
 2002-07-04 10:25 UTC  (2+ messages)

[ECOS] Re: ecos problem
 2002-07-04  6:47 UTC 

[ECOS] code questions:
 2002-07-04  5:37 UTC  (2+ messages)

[ECOS] eCos CookBook documentation project?
 2002-07-04  5:13 UTC 

[ECOS] Signal handling
 2002-07-04  2:51 UTC 

[ECOS] code questions:
 2002-07-03 23:42 UTC 

[ECOS] diag_printf
 2002-07-03 22:25 UTC 

[ECOS] dsr-list NULL
 2002-07-03 21:09 UTC 

[ECOS] On ecos startup squeue:copy vectors
 2002-07-03 20:41 UTC 

[ECOS] SNDS Ethernet
 2002-07-03  6:20 UTC  (3+ messages)

[ECOS] Re: Hi Please See to my problem in eCos
 2002-07-03  5:48 UTC 

[ECOS] e7t crash
 2002-07-03  5:45 UTC  (2+ messages)

[ECOS] Re: I need some clarifications regarding ecos
 2002-07-03  3:44 UTC 

[ECOS] on "a.out,COFF,ELF"targets
 2002-07-02 19:18 UTC  (2+ messages)

[ECOS] Some Question about the Linker script in ecos
 2002-07-02 16:29 UTC  (5+ messages)
  ` [ECOS] problem with memory allocation on SNDS-100 board

[ECOS] e7t write problem
 2002-07-02 12:21 UTC  (2+ messages)

[ECOS] lwip& redboot question
 2002-07-02  9:16 UTC  (2+ messages)

[ECOS] EB40 standalone application
 2002-07-02  6:39 UTC  (4+ messages)

[ECOS] diag_printf problem
 2002-07-01 23:20 UTC 

[ECOS] nuova chat mutitasking
 2002-07-01 12:47 UTC 

[ECOS] Re: On ecos exception process
 2002-07-01  7:56 UTC 

[ECOS] registering serial devices
 2002-07-01  7:51 UTC 

[ECOS] source code credits
 2002-07-01  5:40 UTC  (5+ messages)

[ECOS] build error (Invalid token in expression)
 2002-07-01  3:25 UTC  (2+ messages)

[ECOS] The whole flash architecture with jffs2 filesystem!
 2002-07-01  2:12 UTC 

[ECOS] Latest eCos CVS docs with search facility
 2002-07-01  0:28 UTC  (3+ messages)

[ECOS] RedBoot does not recognize any disks
 2002-06-30 20:20 UTC 

[ECOS] SGML authoring
 2002-06-30  7:37 UTC  (3+ messages)

[ECOS] source code credits/ EB55 port
 2002-06-30  0:37 UTC  (3+ messages)

[ECOS] CDB89712
 2002-06-29  0:44 UTC 

[ECOS] Redboot DHCP and gateway support
 2002-06-28 12:05 UTC  (2+ messages)
` [ECOS] Interface initialisation for eth0

[ECOS] Question about the Big Endian and Little Endian in ecos
 2002-06-28 12:00 UTC 

Re: [ECOS] gnu tool: Directive used by asembler
 2002-06-28  3:29 UTC 

Re: [ECOS] ecos questions:kill safty
 2002-06-27 22:17 UTC 

[ECOS] error linking tk's eb40 and my eb40a hal
 2002-06-27 18:53 UTC  (3+ messages)

page:  |  | latest

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).