User Activity

Posted on January 13, 2015 at 10:15Hi all, I have been asked to take over a project on a custom built board that features the STM32F103RCT6 processor. I have installed Keil Uvision IDE but am struggling to communicate with the board so I wondered if...
Posted on March 26, 2014 at 15:08I have a jump table currently set-up like thisProcTable DCD Proc1 DCD Proc2 DCD Proc3EndTableAnother part of my program that is acting as a processes manager which needs to keep track of the number of the process so ...
Posted on March 22, 2014 at 18:14MULT CMP r1, #1  BEQ Finish ITTT HS SUBHS r1, #1 MULHS r0, r2 BLHS MULTWhere I currently have ''BEQ Finish'' I wish to call an SVC Handler, how can I do this?I know I can call an SVC handler with SVC 0 , SVC 1 etc.. ...
Posted on March 17, 2014 at 12:28AREA StackSwitch, CODE, READONLYIMPORT PrintHexEXPORT StartEXPORT Reset_Handlerstack_base DCD 0x28000THUMBPRESERVE8ENTRYReset_HandlerStartMOV r0, &sharp0xf00dPUSH {r0}MOV r0, &sharp0BL Mode_SwitchPOP {r0}BL PrintHex ...