• C question regarding printf
    int temp 1 , temp2; temp1 = ((packet_analyze[i] << 56) & 0xFF000000); temp1 |= ((packet_analyze[i+1] << 48) & 0x00FF0000); temp1 |= ((packet_analyze[i+2] << 40) & 0x0000FF00); temp1 |= ((packet_analyze...
  • Regarding usage of printf for serial communication
    I am writing some serial data transfer apllication, i was seeing some examples given by keil. in that hello world example i have seen. i that they have used printf function which will print in serial...
  • problem regarding garbage value
    Hi, I have developed a software in c(embedded).I used c51 compiler,8051(ATmel) microprocessor.I programmed to spot billing machines(machines that generate electricity bills) with the software.It is...
  • A strange problem regarding pointer
    I MUST set a pointer to 0xFF0000 in code space and use instructions as follows: char code *ptr = 0xFF0000; value = *ptr; On debugging, I watch the following code from diassemble window: 11...
  • problem with printf()
    Hello, I want to ask a little bit help. I want to use the printf instruction with the Noice debugger. I can printf char or float fine but when I try to printf int or long I get a totally different...