• How to use external sprintf instead of sprintf in libg with GNU Arm Embedded Toolchain Version 10.3-2021.10?
    Acutally not only sprintf, there are some other functions have same issue. I implement sprintf, sscanf, etc in my source code, but get multiple definition error below while linking: [build] cmd...
  • How to use external sprintf instead of sprintf in libg with GNU Arm Embedded Toolchain Version 10.3-2021.10?
    Acutally not only sprintf, there are some other functions have same issue. I implement sprintf, sscanf, etc in my source code, but get multiple definition error below while linking: [build] cmd...
  • PROBLEMS WITH SPRINTF
    Hi I'm trying to convert a double number in scinetific notation into a string of 4 characters. I have written this code char result[4]; double corr; sprintf(result,"e", corr); corr is a decimal...
  • PROBLEMS WITH SPRINTF
    Hi i am having a problem with the sprintf function. i don't know what i am doing wrong. i created a function where i use sprintf to separate the digits of a decimal number, and the first time that...
  • Problem with sprintf
    I have to following code: // Write screen n = sprintf( screen_msg, " TV: %#4.1f FV: %#4.1f CV: %#4.1f SV: %#4.1f\r\n", ad_value[2], ad_value[1], ad_value[0], ad_value[3] ); n += sprintf( screen_msg...