• facing problem while flashing the device
    When i am trying debug(Flash) my new device stm32f070f6p6 with the keil through the programer st-link, the "Flash timeout: reset the device and try again" message box appears. Please suggest me the...
  • printf statement
    Greetings, I'm "attempting" to use the printf statement within my main code. Currently I'm seeing nothing out. My processor is a Dallas DS80C320. This has two serial port. - sbuf0 and sbuf1....
  • Facing a problem while compiling the code for ADuC703x
    Hi, Good Day. Currently I am working on ADuC703x from Analog devices family. This processor is built with ARM7TDMI core. I have taken one example code from analog devices and trying to build that...
  • Facing issue while Prefetching the data
    for(y=0;y<height;y++) { a0 = vld1_u16 (&p[width*0]); // a0 - a10 = 16x4 vector and width is 32 bit integer a1 = vld1_u16 (&p[width*1]); a2 = vld1_u16 (&p[width*2]); a3 = vld1_u16 (&p[width*3]); a4 = vld1_u16...
  • printf statement not working after putchar statement is used.
    Hi All I am using following putchar routine. void srl_putchar(unsigned char send) { SBUF = send; while (!TI); TI = 0; } after using above routine to transfer a character via serial port i continued...