• tag in uVision4-project (*.uvproj)
    I'm trying do validate a uVision4 project file against the project_proj.xsd xml schema. I got an exception because of a <bUseTDR>-tag. What is this tag for, and why is it included in the schema? ...
  • Branching to __main
    Hey guys, does someone knows why a branching to __main from the reset handler can causes the program to stop execution at a breakpoint. It branches fine to main but the __main scatter initialisation...
  • BRANCHING INSTRUCTION
    Dear All, I am trying to add a boot loader for my LPC2478 based application. I want to conditionally Branch to my main code at 0x1000 from the boot loader code. When i tried from Startup.s as below...
  • Assembler Branch instruction?
    b .+2 B is Branch instruction but I don not understant what is .+2 and how many cycle use this instruciton. I was looking for a book, but we can not tell anything nicely, you can recommend something...
  • Branch to application from bootloader
    Hi, I am using this function to branch to application wo problems on GNU tools: static void boot_jump(uint32_t lAddress) { __asm( "LDR SP, [R0]\n" "LDR PC, [R0, #4]\n" ); } But compiling...