• _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, I have just taken a project already started on the ST10F168. My problem is to understand when I am obliged to use the _nop_() function. Because in my project, it's using in abundance...Is it really...
  • _nop_()
    Hi, I have just taken a project already started on the ST10F168. My problem is to understand when I am obliged to use the _nop_() function. Because in my project, it's using in abundance...Is it really...
  • _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_() 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_();...