There are usually two methods for delaying the implementation of several precise delays of 51 MCUs: one is hardware delay, and the timer/counter is used. This method can improve the working efficiency of the CPU and also achieve precise delay. The other is software delay, which is mainly done in a loop body. 1 Use timer/counter to achieve precise delay A single-chip system typically uses a 11.059 2 MHz, 12 MHz or 6 MHz crystal. The first is easier to produce a variety of standard baud rates, the latter two machine cycles are 1 μs and 2 μs, respectively, for precise delay. It is assumed in this program that a crystal with a frequency of 12 MHz is used. The longest delay time is 216 = 65 536 μs. If the timer works in mode 2, the precise delay can be realized in a very short time; if other timing methods are used, the time of reinstalling the initial value of the timing should be considered (the initial value of the reloading timer takes 2 machine cycles). In practical applications, the interrupt method is often used for timing, and a delay of several seconds or longer can be realized by performing an appropriate cycle. Using the timer/counter delay is the best solution from both program execution efficiency and stability. However, it should be noted that the interrupt service program written by C51 will automatically add PUSH ACC, PUSH PSW, POP PSW and POP ACC statements after compiling, which takes up 4 machine cycles; if there is a count value plus 1 statement in the program, It will take up 1 machine cycle. The time consumed by these statements is taken into account when calculating the initial value of the timing, and subtracted from the initial value to achieve the minimum error. 2 software delay and time calculation In many cases, the timer/counter is often used for other purposes, and only software methods can be used to delay this time. Here are a few ways to delay software. 2.1 short delay Can be implemented in the C file by using the function with _NOP_ () statement, define a series of different delay functions, such as Delay10us (), Delay25us (), Delay40us (), etc. stored in a custom C file, you need It is called directly in the main program. For example, a delay function with a delay of 10 μs can be written as follows: Void Delay10us( ) { _NOP_( ); _NOP_( ); _NOP_( ); _NOP_( ); _NOP_( ); _NOP_( ); } There are six _NOP_( ) statements in the Delay10us( ) function, and each statement executes for 1 μs. When the main function calls Delay10us( ), it first executes an LCALL instruction (2 μs), then executes six _NOP_( ) statements (6 μs), and finally executes a RET instruction (2 μs), so it is necessary to execute the above functions. 10 μs. You can use this function as a basic delay function, which is called in other functions, that is, nested call \[4\] to achieve a longer time delay; but note that if you call 4 directly in Delay40us( ) For the Delay10us( ) function, the delay time will be 42 μs instead of 40 μs. This is because when the Delay40us( ) is executed, the LCALL instruction (2 μs) is executed first, then the first Delay10us( ) is executed, and when the last Delay10us( ) is executed, it returns directly to the main program. And so on, if it is a two-level nested call, such as calling Delay40us() twice in Delay80us(), it must also execute the LCALL instruction (2 μs) first, and then execute the Delay40us() function (84 μs) twice. Therefore, the actual delay time is 86 μs. In short, only the innermost function executes the RET instruction. This instruction returns directly to the superior function or the main function. If 8 times Delay10us( ) is called directly in Delay80μs( ), the delay time is 82 μs. By modifying the basic delay function and the appropriate combination call, the above method can achieve delays at different times. 2.2 Nesting the assembler segment in C51 to achieve delay In C51, assembly language statements can be nested by preprocessing directives #pragma asm and #pragma endasm. The user-written assembly language follows #pragma asm and ends before #pragma endasm. Such as: #pragma asm ... Assembly language block ... #pragma endasm The delay function sets the entry parameters, which can be defined as unsigned char, int or long. According to the rules of the parameters and return values, the parameters and function return values ​​are located in R7, R7R6, R7R6R5. Pay attention to the following points when applying: ◆ #pragma asm, #pragma endasm are not allowed to be nested; ◆ The preprocessor directive #pragma asm should be added at the beginning of the program. There can only be comments or other preprocessor directives before the directive. ◆ When using the asm statement, the compilation system does not output the target module, but only the assembly source file; ◆ asm can only use lowercase letters. If you write asm to uppercase, the compilation system will use it as an ordinary variable. ◆ #pragma asm, #pragma endasm, and asm can only be used within a function. Combining assembly language with C51 and giving full play to their respective advantages is undoubtedly the best choice for microcontroller developers. 2.3 Determine the delay time using the oscilloscope Use an oscilloscope to determine the delay program execution time. The method is as follows: Write a function that implements the delay. At the beginning of the function, set an I/O line such as P1.0 to a high level, and clear P1.0 to a low level at the end of the function. The delay function is called cyclically in the main program, and the execution time of the delay function can be determined by measuring the high time on the P1.0 pin through the oscilloscope. Methods as below: Sbit T_point = P1^0; Void Dly1ms(void) { Unsigned int i,j; While (1) { T_point = 1; For(i=0;i"2;i++){ For(j=0;j"124;j++){;} } T_point = 0; For(i=0;i"1;i++){ For(j=0;j"124;j++){;} } } } Void main (void) { Dly1ms(); } Connect P1.0 to the oscilloscope and run the above program. You can see that the waveform of P1.0 output is a square wave with a period of 3 ms. Among them, the high level is 2 ms and the low level is 1 ms, that is, the execution time of the for loop structure "for(j=0;j"124;j++) {;}" is 1 ms. By changing the number of cycles, you can get delays at different times. Of course, you can use other statements to implement the delay without the for loop. The only discussion here is the way to determine the delay. 2.4 Using the disassembly tool to calculate the delay time The delay time is calculated using the disassembly tool in Keil C51, and the target application can be displayed in the disassembly window using the mixed code or assembly code of the source and assembler. To illustrate this method, also use "for (i=0;i C: 0x000FE4CLRA / / 1T C: 0x0010FEMOVR6, A//1T C: 0x0011EEMOVA, R6//1T C: 0x0012C3CLRC//1T C: 0x00139FSUBBA, DlyT //1T C: 0x00145003JNCC: 0019//2T C: 0x00160E INCR6//1T C: 0x001780F8SJMPC: 0011//2T It can be seen that there are 8 statements from 0x000F to 0x0017. The analysis statement can find that not every statement executes DlyT times. The core loop has only 6 statements from 0x0011 to 0x0017, a total of 8 machine cycles. The first cycle executes the two statements "CLR A" and "MOV R6, A". It takes 2 machine cycles, and each cycle requires 8 cycles. Machine cycles, but the last cycle requires 5 machine cycles. The DlyT sub-core loop statement consumes (2+DlyT&TImes; 8+5) machine cycles, with a precision of 7 μs when the system is 12 MHz. When a while (DlyT--) loop body is used, the value of DlyT is stored in R7. The corresponding assembly code is as follows: C: 0x000FAE07MOVR6, R7//1T C: 0x00111F DECR7//1T C: 0x0012EE MOVA, R6//1T C: 0x001370FAJNZC: 000F//2T The execution time of the loop statement is (DlyT+1) & TImes; 5 machine cycles, that is, the loop structure has a delay precision of 5 μs. Through experiments, if you change while (DlyT--) to while (--DlyT), after disassembly, you get the following code: C: 0x0014DFFE DJNZR7, C: 0014//2T It can be seen that at this time, the code has only one sentence, occupying 2 machine cycles, the precision is 2 μs, and the loop body consumes DlyT&TImes; 2 machine cycles; however, it should be noted that the initial value of DlyT cannot be 0. Note: The time and function should be added to the function call and the function returns 2 machine cycle times. Desktop Phone Holder,Desktop Mobile Phone Holder,Adjustable Desktop Phone Holder,Universal Desktop Cell Phone Holder Ningbo Luke Automotive Supplies Ltd. , https://www.nbluke.com
September 03, 2021