• Simulator issue with printf?
    While using the simulator, the values of i in the serial window are shifted by left 8 bits. #include "stdlib.h" #include "stdio.h" #include "reg51.h" void main (void) { unsigned char i; SCON ...
  • stm32f429 printf/b on keil
    How can i use printf in keil for my stm32f429i disc1 discovery board. I followed the steps on this link www.keil.com/.../ulink2_trace_itm_viewer.htm. i am still not able to print. Do i have to add...
  • Printf problem in Keil
    Whenever I try to send float value on the UART, the code compiles perfectly. But when I try to burn in on my LPC2138, it doesn't burn. Can you help me in solving my problem? my code is: printf...
  • printf() in Keil C166
    Hello, I want to transmit data over serial port with printf() and meet a strange thing. Code 1: unsigned char buf1[] = {0xAA, 0x52, 0xCC, 0x33, 0xC3, 0x3C, '\0'}; printf("%s", buf1); ...
  • UART - printf - keil
    printf() is a library routine provided by keil library. So whenever we use printf in our code I assume what it might be doing is calls a routine which places characters of the printf statement in...