Posted on May 17, 2011 at 12:56Could be they come from the same silicon as a higher-class mcu (e.g. strm32f101r with 16kb) but have flaws that cause them to fail the requirements. If they still meet the requirements of a lower-class mcu, they could ...
Posted on May 17, 2011 at 12:55Personally I didn't find the TRM very helpful about the hard fault exceptions, which is why I didn't mention it. ''All classes of Fault'' isn't exactly precise :) As for malloc(), I'm tempted to think in the direction ...
Posted on May 17, 2011 at 12:55I'm facing the exact same problem. For my code, it's related to sprintf(): Code:char s[10]; sprintf(s, ''X'');works just fine, however a Code:char s[10]; int v; sprintf(s, ''%d'', v);generates several hard fault except...
Posted on May 17, 2011 at 12:49My apologies for the late post, you know how it is. Either way, you can find the GCC project template here: http://apelpie.net/blog/index.php/2008/11/mating-hitop-52-with-gcc/
Posted on May 17, 2011 at 12:49Yeah, I'm using it with GCC 4.3.0 and debugging actually works tons better than with Tasking VX, too. I obtained it by downloading and installing HiTOP 5.3-CTX, grabbing GCC and the ProjectTemplates directory and unins...