Re: Question on rtems printf problem

2022-12-19 Thread tianye
It's just a random string testcase for printf.I know it's not a correct parameter for printf, but this lead to uart print space(ascii:0x20)0 forever.Maybe it's a newlib bug.So, I was wonder who encountered this proble, and how to solve this problem.-gro...@chichak.ca ׫д:-ÊÕ¼þÈË: tia...@su

Re: Question on rtems printf problem

2022-12-19 Thread groups
> On 2022-December-19, at 19:59, tia...@sugon.com > wrote: > > Hi: > I have a testcode, it will lead to uart print space forever. > > Demo code like this: > Init() > { > create a task; > start this task; > pr

Re: Question on rtems printf problem

2022-12-19 Thread groups
On 2022-December-19, at 19:59, tia...@sugon.com wrote: > > Hi: > I have a testcode, it will lead to uart print space forever. > > Demo code like this: > Init() > { > create a task; > start this task; > printf("%

Question on rtems printf problem

2022-12-19 Thread tianye
Hi: I have a testcode, it will lead to uart print space forever.Demo code like this: Init() { create a task; start this task; printf("%*\n");while(1) { sleep() } }This code lead to uart print space forever('SPACE' ascii is 0x20): 'SPACE''SPACE''SPACE''SPACE''SPACE''SPACE''SPA