• _nop_()
    Hi, Just a question about _nop_() ! I work on ST10F168 at 24MHz. How can i know what's the delay of _nop_() function ??? Thanks in advance Regards
  • _nop_()
    Hi, Just a question about _nop_() ! I work on ST10F168 at 24MHz. How can i know what's the delay of _nop_() function ??? Thanks in advance Regards
  • NOP Vs _nop_()?
    In one of my project I am talking with MX909 Driver IC with C51 ucontroller. To initialize MX909 if I write module in Assembly language it's working fine. Once I replaced with C same module it's not...
  • NOP Vs _nop_()?
    In one of my project I am talking with MX909 Driver IC with C51 ucontroller. To initialize MX909 if I write module in Assembly language it's working fine. Once I replaced with C same module it's not...
  • _nop_() does not work
    Hi forum! I need a delay in a programm but _nop_() seems not to work. Thus I wrote the following code in the main function where x is an IO pin: while(1) { x = 1; _nop_(); x = 0; _nop_();...