Re: [ECOS] printf problem

2010-06-01 Thread Manuel Borchers
Am Dienstag, den 01.06.2010, 12:52 +0200 schrieb Manuel Borchers: > Am Dienstag, den 01.06.2010, 10:49 +0200 schrieb Manuel Borchers: > > They are in the resulting application. At least lookup and write are > > working, because that's what I used to test my serial drivers in the > > first place.

Re: [ECOS] printf problem

2010-06-01 Thread Manuel Borchers
Am Dienstag, den 01.06.2010, 10:49 +0200 schrieb Manuel Borchers: > They are in the resulting application. At least lookup and write are > working, because that's what I used to test my serial drivers in the > first place. > > I need to write some simple tests to see if set/get and read are > wor

Re: [ECOS] printf problem

2010-06-01 Thread Manuel Borchers
Hi Sergei, hi list, Am Montag, den 31.05.2010, 21:26 +0300 schrieb Sergei Gavrikov: > Those snippets are the very minimal configs :-) Indeed. Find the output of your inspect script attached. Note: your inspect script misses the netx serial driver, because it's included with -hardware. The confi

Re: [ECOS] printf problem

2010-05-31 Thread Sergei Gavrikov
On Mon, 31 May 2010, Manuel Borchers wrote: Hi all, Hi Manuel, it's me again with 'serial' problems ;) I got the netX serial driver working quite fine. So the next step was to try out printf (I was using diag_printf before, which works flawlessly). I enabled asserts, tracing and io init deb

[ECOS] printf problem

2010-05-31 Thread Manuel Borchers
Hi all, it's me again with 'serial' problems ;) I got the netX serial driver working quite fine. So the next step was to try out printf (I was using diag_printf before, which works flawlessly). I enabled asserts, tracing and io init debugging. Stdio is still on the default /dev/ttydiag (which wo

Re: [ECOS] printf problem

2006-08-10 Thread Tathagata Das
Thanks for you quick response. Yes, my serial driver gets invoke when printf is called. I have debugged that. But when I use printf from thread, my serial driver does not get called. Gary Thomas wrote: Tathagata Das wrote: Hi all, I am trying to write serial driver. My problem is pri

Re: [ECOS] printf problem

2006-08-10 Thread Gary Thomas
Tathagata Das wrote: Hi all, I am trying to write serial driver. My problem is printf is working in cyg_user_start function, but does not work from any thread. I have debugged. From thread context, serial_write function is not invoked. diag_printf is working in thread. Here is my progra

[ECOS] printf problem

2006-08-10 Thread Tathagata Das
Hi all, I am trying to write serial driver. My problem is printf is working in cyg_user_start function, but does not work from any thread. I have debugged. From thread context, serial_write function is not invoked. diag_printf is working in thread. Here is my program void entry_poi