Search Results

Search results 1-2 of 2.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Hi Til! Thank you for that very fast response! I want to apologize! Everything about "Printf Integer Support = Long Long" option was set correctly - but only at "Solution Options" not inside "Project Options". After setting the flags there too all went well!! It was my misunderstanding that "Solution Options" will overwrite "Project Options". Best regards Marco Seitter

  • Hi, i had a first trial with embOS using - embOS V502a - Cortex-M - STM32F051_STM32F051R8_SK example from the embOS BoardSupport Folder - Segger Embedded Studio for ARM V4.12 (64Bit) and realized the following problem: /* CODE INSIDE A TASK */ unsigned long long SerialNumber = 123456789012345; char buffer[50]; sprintf(buffer, "%llu", SerialNumber); /**********/ produces - while using embOS - the result : buffer[0] => u (only the character "u") ?? and without embOS the result is correct : buffer …