• L15 WARNING : MULTIPLE CALL TO SEGMENT
    SMS interrupt 0{ berita(0x0000,0x3fff); } show interrupt 1{ berita(0x4000,0x7fff); } Interrupt 0 and interrupt 1 call the same sub routine but for different purpose. When compiled, the C51...
  • L15 WARNING : MULTIPLE CALL TO SEGMENT
    SMS interrupt 0{ berita(0x0000,0x3fff); } show interrupt 1{ berita(0x4000,0x7fff); } Interrupt 0 and interrupt 1 call the same sub routine but for different purpose. When compiled, the C51...
  • How to solve this WARNING L15: MULTIPLE CALL TO SEGMENT
    hi all I got a warning message when I setting OPTIMIZE (8,SPEED) Please tell me how to solve this WARNING L15: MULTIPLE CALL TO SEGMENT SEGMENT: ?PR?_TASK_SCHEDULER?MPG450 CALLER1: ?PR?EXINT1_INT_ROUTINE...
  • How to solve this WARNING L15: MULTIPLE CALL TO SEGMENT
    hi all I got a warning message when I setting OPTIMIZE (8,SPEED) Please tell me how to solve this WARNING L15: MULTIPLE CALL TO SEGMENT SEGMENT: ?PR?_TASK_SCHEDULER?MPG450 CALLER1: ?PR?EXINT1_INT_ROUTINE...
  • About warning L15.
    I have developed 8051 software like following: void my_f(U8 t) { U8 i; U8 j; for (i=0;i<t;i++) for (j=0;j<10;j++) nop(); } void my_int (void) interrupt 2 { ....... my_f(1); ....... } ...