• serious bug how is it fixed
    void DelayUSec (uint32_t Time) { Delay_Done = 0; while(!Delay_Done); } void Handler (void) { if (Stat & 0x01) { if (!Delay_Done) Delay_Done = 1; } } it never come out of my loop ...
  • C51 V6.22 fixes reported bug
    For those who were interested in the pointer incrementation bug reported in my thread "C51 V6.20 & V6.21 still have reported bug" ( http://www.keil.com/forum/msgpage.asp?MsgID=4052), V6.22 now compiles...
  • ARM GCC errata bug fix
    Hi all, I'm using the GCC ARM compiler in version (GNU Tools for ARM Embedded Processors 6-2017-q2-update). I wanna know that whether the two arm errata: 1.Arm Errata 752770: Interrupted loads to...
  • Dual uart on DS80C390
    Hi, Is there someone who has an example for me where I can send text with both uarts on an DS80C390. I don't know how to manage that. What does Dallas exact mean with Contiguous Mode ?? Reagards...
  • Is this a BUG??
    121: void Uart_Receive_Data(void) ----> interrupt route(USING 1) called fun 122: { 123: Tinbuf[Tiend++ & (ILEN-1)] = UartBuf_R; 124: C:0x0212 7818 MOV R0,#UartBuf_R(0x18) C:0x0214 E6 MOV...