• STM32F746 : PLL not ready forever.
    Hello, I am trying to enable internal clock ( HSI ) in stm32f746. But when I debug code, I find that pll ready bit of RCC's CR register is not set. Following part of code always return HAL_TIMEOUT...
  • ready made c-function
    hello all, i am new for keil. i want to start all my 8051 programing in C. I want to know, what actually gets converted into assembly laguage when i use ready made c-function like printf(), scanf()...
  • is XC167 ready for prime time?
    I get the impression from Infineon and Keil that although the XC167 is supported (alive), it's not quite ready for prime time. Infineon's DaVE doesn't seem to include it in its device profile. I was wondering...
  • Steps involved in conversion of C file to Hex file
    Hi.. Can any one tell me steps involved while the c file is converted to hex file. i.e what all files(e.g.object files,list files,loader,linker) comes into existance.?
  • Extra (useless) instructions involving r7 and accumulator
    Why would the following line in C: XRAM00 |= 0x01; compile into this: mov dptr, #XRAM00 movx a, @dptr mov r7, a mov a, r7 orl a, #1 mov r7, a mov dptr, #XRAM00 mov a, r7 movx @dptr...