Tool/software: Code Composer Studio
Hi,
I have a custom board having msp430f6736 and 14 segment LCD display(VIM-828-DP13.2-RC-S-LV).i can't print character in 6,7 positions but can print characters in all other positions from 1 to 8 except 6 and 7.
i don't know why.can any one solve this .(i did the code with lcd c module in this controller, configuration shown below).
//////////initialisation////////
LCDCCTL0 = LCDDIV_31 | LCDPRE_1 | LCD4MUX | LCDON;
//Charge pump generated internally at 2.96V, external bias (V2-V4) generation
//Internal reference for charge pump
LCDCVCTL = LCDCPEN | VLCD_2_96;
REFCTL0 &= ~REFMSTR;
LCDCPCTL0 = 0xFFFF; //Select LCD Segments 4-5
LCDCPCTL1 = 0xFFFF; //
///////////////////////////////////////////////printing A
LCDM1=BIT1|BIT2|BIT6;
LCDM16=BIT0|BIT1|BIT2|BIT5;
///////////////////////////////////clearing
LCDM1=00x00;
LCDM16=0x00;