• Failed to debug hello world project on Cortex-A76
    Hi, I'm trying to debug a hello-world C project following the tutorial developer.arm.com/.../Tutorial--Hello-World on FVP Cortex-A76. The program can stop at main and can be debugged successfully, however...
  • Tags for Branch
    Going through the tutorial, my code: AREA MyFirstExample, Code, ReadOnly ENTRY MOV r0,#4 MOV r1,#5 ADD r2,r0,r1 S B S END When I build I get the following error: MyFirstExample...
  • how to manipulate values at the ports
    can i manipulate the values at the port pins individually,, i.e., if i want the 6th pin of port0 to be high, can i assign 1 to that particular pin, without disturbing the other port pin values??...
  • 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? ...
  • Calendar data type manipulation
    Hello All, I am writing a Scheduler (posted question regarding timers earlier) which must handle long delays: from 1s to several days. What would be the easiest way to add, lets say, 10.000 seconds...