• IAR does not recognize tm4c123 library
    Hi: When i am going to download the code to my Texas Instruments launchpad TivaC (tm4cgh6pm), IAR shows this error. How can i fix it ?
  • Can I have 2 different versions of Keil Uvision on the same computer ?
    Is it possible for me to have 2 different versions of Keil Uvision (4 and 5) on the same computer (Windows 10)? If yes, how do I do it and what care should I take to avoid the mishaps ? TIA
  • which arm tool chain i have to use for Arm V8,AArch32 in windows?
    HI I'm new to arm. Im working on LS1043A processor which is having Arm V8 and A53 core. i wrote some startup code. i want to build that one in windows. For that which arm tool chain i have to use? and...
  • Building C++/ARM project with console
    I have to make an automation for a school project. But in order to do that I need to have a DS-5 executable file for a specific project. Is there any way to compile a multi C++ file project with assembly...
  • __attribute((used))has been declared, but the variable is still deleted when linking
    test code: int TestMain() { g_TestTest++; return 0; } #pragma clang section rodata=".rti_fn.6" __attribute((used)) const init_fn_t __rt_init_TestMain = TestMain; #pragma clang section rodata="" ...