Re: [rtl] serial port interrupt

2000-07-24 Thread Emeel
i am working on a similar project to you guys. The program checks a real time buffer periodically, every second, for serial input data. rt_com functions read the data in real time and store it to a real time buffer which is big enough to accomodate a few packets in the occasion that the buffer is

Re: [rtl] MIPS,

2000-07-24 Thread cort
It will only run on an eval board we have, right. Indy doesn't work yet. The hooks for each MIPS arch will be different since each Linux/MIPS machine has a different irq.c. I've updated one port to work with the modern irq_desc_t structure (just like PPC). I think it's possible to combine all t

[rtl] pthread_wait_np

2000-07-24 Thread eric
Does my thread really have to be periodic in order to use pthread_wait_np? I have created a thread that does something when my interrupt routine ends, and it isn't periodic but waits to be killed (woken up) by the isr. Now i see in the doco's for pthread wait that "the thread was previously mark

[rtl] DSL v1.0.0beta released!

2000-07-24 Thread Ivan Martinez
(Sorry if sent twice, I think I did something wrong the first time) DSL is a C++ library for real-time dynamic systems simulation under RTLinux. DSL's classes implement loops, blocks, inputs, outputs, etc. By creating instances and setting their properties, you can easily implemen

[rtl] Interrupt trigger question

2000-07-24 Thread Skipworth, William
Hello, I'm trying to develop a real-time data acquisition system in which data will be read through the serial port. I want to use interrupts to accomplish this. I have a 16 byte fifo buffer. My question is, how do I ensure that the interrupt trigger level is set to 14 bytes? Thanks, Bill --

Re: [rtl] serial port interrupt

2000-07-24 Thread eric
Adi Sudewa wrote: > > Hi all, > > In my application, I build a kind of real-time server that handle requests > from serial port. I use rt_com_read() function from rt_com package. > > The current implementation of rt_com_read() is non-blocking and return > immediately when no data available at s

Re: [rtl] mbuff & shared memory = Two questions

2000-07-24 Thread Tomasz Motylewski
On Mon, 24 Jul 2000, Estabridis, Janet P wrote: > 1. Can I use both the old style shared memory and only use mbuff for the > buffer for A/D values? Yes, for sure. > 2. I have not looked at the examples yet, so my question is what example(s) > will get me up and running quickly. I need to s

[rtl] mbuff & shared memory = Two questions

2000-07-24 Thread Estabridis, Janet P
Hi, I'm using kernel 2.0.36 and RTLv0.9J. I am completeing a project in which I have some embedded computers utilizing the old style shared memory (max. 4 MBytes). I need to increase the buffer in which I store the real-time A/D values so that I can insure I don't lose any data. Questions: 1.

Re: [rtl] RT and the VGA

2000-07-24 Thread Stuart Hughes
daniel sheltraw wrote: > > Hello realtimers > > I have a function which writes to video memory in kernel-space (and the > palette registers) after setting up the video mode using SVAGlib in > user-space. I have used this function previously in a non-RT kernel > module where it worked as expected