Search Results
Search results 1-4 of 4.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
Hi all! Further to previous post: [SOLVED] uart example - nordic bc832 peripheral - complie error on embedded studio I have the embedded sudio (V3.34b) and when i build in debug there are no problems, when i tried to build this project on release i get compile error (I check the uart example and also there have compile error in release). the error is: C:/Program Files/SEGGER/SEGGER Embedded Studio for ARM 3.34b/lib/libc_v7em_fpv4_sp_d16_hard_t_le_eabi.a(libc2.o): In function `printf': libc2.c:(.…
-
Nino hi, thank you for your quick replay. In Segger website i see only 3.40 for windows 64-bit and ARM cortex. Best regards, Yoav
-
hi all! when i tried to compile the uart nordic example in embedded studio, i get "conflicting types for '__putchar' ". i check this example on IAR and it's work fine. for my understanding the problem is that in <stdio.h> the decleration of this function is: int __putchar(int, __printf_tag_ptr); and in "retarget.c" the definition is: int __putchar(int ch, FILE * p_file) and this definition is only for embedded studio. can anyone can help me? what i need to do to solve this? (i forgot to mention …