2970 views|0 replies

1379

Posts

0

Resources
The OP
 

Application skills/Several issues in PIC microcontroller development [Copy link]

The PIC series of microcontrollers produced by Microchip Corporation of the United States have been widely used in industrial control, instruments, meters, communications, home appliances, toys and other fields due to their ultra-small size, low power consumption, low cost and variety. This article summarizes some of the author's experience and skills in the development of PIC microcontrollers for reference by peers. 1 How to further reduce power consumption

Power consumption is an important consideration in battery-powered instruments. The PIC16C×× series microcontrollers have low power consumption (the operating current is less than 2mA at 5V, 4MHz oscillation frequency). To further reduce power consumption, the operating frequency can be reduced while ensuring that the working requirements are met. The reduction in operating frequency can greatly reduce power consumption (for example, when the PIC16C×× works at 3V, 32kHz, its current can be reduced to 15μA), but the lower operating frequency may cause some subroutines (such as mathematical calculations) to take up more time. In this case, when the oscillation mode of the microcontroller adopts the form of an RC circuit, the solution can be to increase the operating frequency midway.

The specific method is to connect a resistor ( R1 ) between an idle I/O pin (such as RB1) and the OSC1 pin , as shown in Figure 1. Set RB1=0 in the low-speed state. When fast calculation is required, set RB1=1 first. Since the capacitor voltage rises quickly during charging, the operating frequency increases and the calculation time is reduced. After the calculation is completed, set RB1=0 again to enter the low-speed and low-power state. The change in the operating frequency depends on the resistance value of R1 (note that R1 cannot be selected too small to prevent the oscillation circuit from not oscillating. It is generally selected to be greater than 5kΩ). In addition, the "sleep" instruction can be fully utilized to further reduce power consumption. When the "sleep" instruction is executed, the machine is in a sleep state and the power consumption is several microamperes. The program can use the "sleep" instruction not only in the standby state to wait for events, but also in the delay program (see Example 1 and Example 2). Using the "sleep" instruction in the delay program to reduce power consumption is one aspect. At the same time, even if the interrupt is turned off, the change in the level of Port B can wake up the "sleep" and end the delay program in advance. This is particularly useful in some applications. At the same time, pay attention to the relationship between "sleep" and WDT and interrupts when using it.

wpe1A.jpg (3150 bytes)

Figure 1 Methods for increasing operating frequency

Example 1 (written in Mplab-C) Example 2 (written in Masm)
Delay() Delay
{ ; This line can add a switch interrupt instruction
/*This line can add a switch interrupt instruction*/ movlw.10
for (i=0; i<=10; i++) movwf Counter
SLEEP(); Loop1
} Sleep
decfsz Counter
goto Loop1
return

2 Note the RBIF bit in INTCON

The interrupt enable bits in INTCON have no effect on the interrupt status bits. When PORT B is configured as input mode, the RB<7:4> pin input is sampled and compared with the old latch value in each read operation cycle. Once different, a high level is generated and RBIF=1 is set. Before opening the RB interrupt, RBIF may have been set to "1", so when opening the RB interrupt, the RBIF bit should be cleared first to avoid being affected by the original value of RBIF. At the same time, it is best to clear the RBIF bit after the interrupt processing is completed.

3 Issues to note when using Mplab-C high-level language to write PIC microcontroller programs

3.1 When embedding assembly instructions in a program, pay attention to the writing format as shown in Example 3.

Example 3

while(1) {#asm while(1) {
#asm /*Should start on a new line*/
#endasm
}/*Cannot compile correctly*/ #endasm
}/*Compilation passed*/

When inlining assembly instructions, each instruction from "#asm" to "endasm" must occupy a separate line, otherwise an error will occur during compilation.

3.2 The safest representation of addition and multiplication is shown in Example 4.

Example 4

#include<16c71.h>
#include <math.h>
unsigned int a, b;
unsigned long c;
void main()
{ a=200;
b=2;
c=a*b;
} /*Cannot get the correct result c=400*/

The reason is that Mplab-C compiles c=a*b in 8×8 multiplication mode, returns a single-byte result to c, and the overflow of the result is ignored. It is safest to change the expression "c=a*b;" in the above example to "c=a; c=c*b;" (the same treatment is applied to addition).

3.3 Understanding the register usage of multiplication and division functions

Since the RAM in the PIC chip is only a few dozen bytes, the space is particularly valuable, and the Mplab-C compiler has a non-release property for RAM addresses, that is, the address used by a variable cannot be allocated to other variables. If the RAM space cannot meet the requirements of too many variables, some variables can only be forced by the user to allocate the same RAM space for alternating use. The multiplication and division functions in Mplab-C need to borrow RAM space to store intermediate results, so if the RAM occupied by the multiplication and division functions overlaps with the address of the user variable, it will lead to unpredictable results. If multiplication and division operations are used in C programs, it is best to first check whether the addresses occupied by multiplication and division conflicts with the addresses of other variables through the disassembly code of the program machine code (included in the generated LST file) to avoid the program running away. The Mplab-C manual does not give the specific RAM address occupied by its multiplication and division functions. Example 5 is the address occupation of 0×13, 0×14, 0×19, and 0×1A by the multiplication function.

Example 5

Partial disassembly code
#include <pic16c71> 01A7 081F MOVF 1F,W
#include <math.h> 01A8 0093 MOVWF 13
;borrow
unsigned long Value @0x1 01A9 0820 MOVF 20,W
char Xm @0x2d; 01AA 0094 MOVWF 14
;borrow
void main() 01AB 082D MOVF 2D,W
{Value=20; 01AC 0099 MOVWF 19
;borrow
Xm=40; 01AD 019A CLRF1A
;borrow
Value=Value*Xm 01AE 235F CALL 035Fh
; Call the multiplication function
01AF 1283 BCF 03,5
} 01B0 009F MOVWF 1F
; Return the low byte of the result
01B1 0804 MOVF 04, W
01B2 00A0 MOVWF 20
; Return the high byte of the result

4. Repeat the chip programming

For users without hardware emulators, EPROM chips are always used to debug programs. Every time a program is changed, the original content is erased first and then programmed. This process wastes a lot of time and shortens the service life of the chip. If the result of the latter programming is only that the same bit of the corresponding machine code byte changes from "1" to "0" compared to the previous one, data can be written again on the chip programmed in the previous time without erasing the original chip content.
In the process of debugging the program, constant adjustments are often encountered. If the change of constants can ensure that the corresponding bit changes from "1" to "0", programming can continue on the basis of the original chip content. In addition, since the machine code corresponding to the instruction "NOP" is "00", the deletion of instructions during the debugging process is replaced by the "NOP" instruction first, and programming can continue on the original chip content after compilation.
In addition, when programming chips with EPROM, pay special attention to the program confidentiality status bit. The manufacturer has changed the confidentiality status bit of the new generation of EPROM chips from the original EPROM erasable type to the fuse type. Once the program code confidentiality fuse is programmed to "0", the reprogrammable EPROM chip cannot be programmed again. Please pay attention to this when using it to avoid unnecessary waste (Microchip information does not explain this).

References

1 Microchip PIC16Cxx Data Book

2 MPLAB-C USER'S GUIDE InstanceEndEditable
This post is from Microchip MCU
 

Guess Your Favourite
Just looking around
Find a datasheet?

EEWorld Datasheet Technical Support

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号
快速回复 返回顶部 Return list