Posted on May 17, 2011 at 13:11Hi, using an other RTOS, i've encounter the same problem with printf and double. The problem was that the OS doesn't align by 8 the stack of my task, and the arm library need to have all double, and long long object to...
Posted on May 17, 2011 at 09:33Hello, 1/ Can somebody could provide me the necessary files to support an STR912 using a Full version of RVDS ? I think I just need .FME (Flash methods) and .BCD (board/chip definition). 2/ I see that tere is some spec...
Posted on April 25, 2006 at 14:09I've done a bootloader for the STR710, like you describe. I'll describe you all that you need to do to create your own bootloader. Actually i've done it under RVDS, but Keil use the same compiler since it's ARM compa...
Posted on April 10, 2006 at 06:15You need to add some statement: TIM_CounterConfig(TIM1,TIM_START); //Start counting TIM_FlagClear(TIM1, TIM_TOF); //Clear overflow flag TIM_ITConfig(TIM1,TIM_TOF,ENABLE); //enable this int (overflow). remove your lin...