Collection of FAQS
1.Macro way of introducing a 10micro sec delay in C:
#define Nop() {__asm ("nop");}// 1Nop = 1US
#define DELAY_10_US() \
Nop(); \
Nop()
No comments:
Post a Comment