Posted on May 18, 2007 at 12:36Hi Elra, I have a 1ms timer for a STR710 maybe it also works for your 712 (is it the same library for both micros ?) => change Reload value and Prescaler should work to setup your 10ms. void TimerInstall( void ) { /* ...
Posted on May 14, 2007 at 09:24Hi Edison, you are right -- FAE has answered within one day. I am currently checking the proposals (proposals: Try with SWI or alternatively try to disable Interrupt Control register in EIC->ICR register). As soon as ...
Posted on May 07, 2007 at 08:14Hi hl, I just tried with my board (Keil MCBSTR750). It has a 4Mhz external oszillator. I configure the PLL on C-Level, using the API from ST (not in the assembler code). So far I used FlashBurst mode, because I am run...
Posted on May 03, 2007 at 11:43Hi JYKim, after an interrupt occurs, the exception vector 0x00000018 is executed. This is the code address which is executed, in case an interrupt is signaled to the ARM7 core. If you add a breakpoint at this position...
Posted on May 03, 2007 at 09:13Hi JYKim, yes. All the code which is executed before you reach ''void main(void)'' routine. Could you use the startup routines (71x_init.s, ...) or did you adapt them to your compiler. BTW: Which compiler / developmen...