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.

MSP430F4152 LCD驱动问题

Other Parts Discussed in Thread: MSP430F4152

用MSP430F4152驱动LCD。R03~R33端口已经被占用;如下是我的配置程序:

void lcda_init(void)
{
P5SEL |= 0xf0; //BIT4 + BIT5 + BIT6 + BIT7
FLL_CTL0 |= OSCCAP_3 ;//XCAP11PF;
LCDAPCTL0 |= LCDS0 + LCDS4 + LCDS8 + LCDS12 + LCDS16; //enable LCD segment 0-19
LCDACTL |= LCDFREQ_64 + LCD4MUX + LCDON; //64分频 4_mux模式 segment开启 LCD模块控制开启

}

显示内容正常,但是不要求显示的字段暗暗的也可以看到,是什么原因??求大神指点,谢谢!