• Timer Flag 0 is raised when timer starts
    Hi! I am trying to run two servos with one timer, checking pin state and set servo angle on a nRF24LE1. I'm not a skilled programmer, but this is what I've got: #include <Nordic/reg24le1...
  • Pin output last state when programming
    Hi all, I'm using IAR 6.5 with MSP430, sometimes when I program the MCU the output pin goes on 'H' instead of 'L' and causing power failure (due to the analog function of that pin). My assumption...
  • P3.5 not changing its state
    hi to all i am using at89c55wd the problem is when i tried to toggle the P3 all bit i.e. P3.0,1,2,3,4,6,7 changes its state expect P3.5 i used timer 0 as timer after 1 sec i invert the P3. position...
  • EZ-USB FX2 and Monitor51
    Hi, I'm using Monitor51 to debug the FX2 but for some reason I haven't been able to use the printf statements, I configure the serial port but I get no message when I reach that point in my program. I...
  • Why does data type conversion not raise an error?
    Hi, I have this code: void main(void) { data unsigned char a = 0; data unsigned char b = 0; data unsigned int c = 1000; b = c; while(1) { a+= 1; } } And it compiles with no errors or...