This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
我这边使用的是MSP430FR6972芯片,我这边开启LCD的功耗运行功耗在30UA左右,直接关闭LCD功耗降到4-7个UA,请问是芯片LCD功耗是20多个UA吗?
还是说我我LCD配置的问题?
void InitLCD(void) //LCD初始化
{
//P6SELC|= BIT0+BIT1+BIT2+BIT3 +BIT4 +BIT5+BIT6; // Enable COMx Pin
// Initialize LCD segments 0 - 14; 26 - 43
LCDCPCTL0 = 0x7FFF;
// LCDCPCTL1 = 0x0000;
// LCDCPCTL2 = 0x0000;
/* Sourcing the LCD from the crystal */
LCDCCTL0 = LCDDIV__1 | LCDPRE__16 | LCD4MUX | LCDLP;
// VLCD generated internally,
// V2-V4 generated internally, v5 to ground
// Set VLCD voltage to 2.60v
// Enable charge pump and select internal reference for it
LCDCVCTL = VLCD_1| VLCDREF_0 | LCDCPEN;
LCDCCPCTL = LCDCPCLKSYNC; // Clock synchronization enabled
LCDCMEMCTL = LCDCLRM; // Clear LCD memory
LCDCCTL0 |= LCDON;
}
您可以看一下数据手册的
5.8 Low-Power Mode With LCD Supply Currents (Into VCC) Excluding External Current
相关例程请参考
https://dev.ti.com/tirex/explore/node?node=AL6BGUhgOWYNTL8nbiNjwA__IOGqZri__LATEST
直接不能显示,我电路图没问题吧,范例都是charge pump,使用外部,LCDCAP管教是不是要输入VCC作为EXT的电源,配置代码是怎么样的?
使用外部,LCDCAP管教是不是要输入VCC作为EXT的电源
When VLCDEXT = 1, VLCD is sourced externally from the LCDCAP, pin and the internal charge pump is disabled.
您需要从外部输入电压作为EXT的电源