• C51 long multiple mistake
    Hi: I use c8051f410, Program Size: data=114.1 xdata=100 code=4633 I had to use the long multiple in program and find it can not be excecute properly. The code is as below, Is this stack...
  • Multiple interrupts
    In my program I use serial communication and T0 interrupt for time delay generation. It is noticed that when I generate a delay of 60 seconds, it works properly only if the serial interrupt is disabled...
  • Multiple mailbox
    I'm trying to use multiple maibox for communication between a parent task to other tasks daughters. But my parent task can only communicate with a single child task, after which the system seems to...
  • Multiple running timers
    Hi, In a application where there exists timer 0 and timer 1. If I set priority 1 to timer 0, what happens to timer 1 if its handle function is called during a timer 0 handle execution ? It's call is...
  • MULTIPLE PUBLIC DEFINITIONS ?
    i write a global.h file: #ifndef GLOBAL_H #define GLOBAL_H int nGlobal; #endif //file A.c #include "global.h" .... //file B.c #include "global.h" .... Build target 'Target 1' compiling...