#include "delay.h" //---------------------------------------------------------------------------- // Wait for a specific time in 100 uSec // (15 + t*( ((K_DELAY_100us-1)*6)+5 )) //---------------------------------------------------------------------------- void Delay_100us(unsigned char t) { unsigned int i; if (t==0) return; while (t--) for(i=0;i