• Debugging not working with GNU toolchain for ARM Cortex-M, version 6.3.1, q1 2017

    The debugger does not work with the latest GNU toolchain for ARM Cortex-M build. It throws the following error on Eclipse: Could not determine GDB version after sending: arm-none-eabi-gcc --version, response: arm-none-eabi-gcc (GNU Tools for ARM Embedded…
  • Firmware flashing using JLinkExe

    I'm using JLinkExe ( J link commander ) for Linux to flash the application firmware on NRF51822_QF_AA target. The following have worked so far, but I'd like to confirm and have some doubts. The typical JLinkExe session invoked as root on my Linux system…
  • application binary size significantly bigger when using GNU Toolchain

    Hi, I've recently moved my development environment from Windows + Keil uVision to Linux + ARM GNU Toolchain . I'm able to build and flash the application firmware, but I notice that the size of final binary is significantly bigger with Linux + ARM…
  • Problem with GNU compiler(2013q4) with SDK 6.1

    Hi , I have a code like below. __attribute__((used, long_call, section(".data"))) void function_1() { unsigned int a; unsigned int b[10]; int c; c= a-((a/ 10)* 10); b[i] = c; a= a/10; } when I tried to build I got the error…