Strangely, the sample delay and sample width appear to be "tied" to one another. Varying VR4 not only changes the sample widths, but also the delay as well??????because of the clck input of the 4024.

//******************************** MAIN PULSE - TX ****************************** DIGITAL_OUT |= (1<<TX_PIN_A); VoidDelay (63935); // 65535-63935=1600, 1600/16=100uS DIGITAL_OUT &= ~(1<<TX_PIN_A); //******************************************************************************* //******************************** MAIN DELAY *********************************** VoidDelay (Sample1Delay); // Main Delay pauza //******************************************************************************* //****************************** MAIN DELAY PULSE ******************************* DIGITAL_OUT |= (1<<SAMPLE_PIN_B); VoidDelay (64850); // 65535-64850=685, 685/16=42,8125 uS DIGITAL_OUT &= ~(1<<SAMPLE_PIN_B); //******************************************************************************* //******************************** EF DELAY ************************************* VoidDelay (65135); // 65535-65135=400, 400/16=25uS //******************************************************************************* //****************************** EF DELAY PULSE ********************************* DIGITAL_OUT |= (1<<SAMPLE_PIN_C); VoidDelay( 64850); // 65535-64850=685, 685/16=42,8125 uS DIGITAL_OUT &= ~(1<<SAMPLE_PIN_C); //******************************************************************************* //******************************** EF+TX DELAY ********************************** VoidDelay( 64850); // 65535-64850=685, 685/16=42,8125 uS //*******************************************************************************
Comment