LCD NO SCREEN

HI every one
my RePhone have no screen
i use RePhone Mass Storage Mode upload
RePhone Create Kit VXP

but lcd is no screen
HOW TO SOLVE??

I have the same issue - After following guide I have no way to access the LCD again.
I have tried a whole bunch of times and different things. Nothing.

I’m back -
If you have downloaded Arduino for Rephone - An easy way to tell if your LCD is ok;

Open arduino; update the firmware.
Open Port ** (MKT Debug) and then run this;

// LCD display test

#include <LDisplay.h>

unsigned long sysData = 0;

void setup()
{
Serial1.begin(115200);
Serial1.print(“LCD display test.\r\n”);
Lcd.init();
Lcd.font_init();
Lcd.back_light_level(50);
Lcd.screen_set(0xffff00);
Lcd.draw_font(0, 0, “X”, 0xffff00, 0);
for(unsigned char j=0;j<20;j++)
for(unsigned char i=0;i<240;i++)
Lcd.draw_point(i,j+ 40,0xff0000);
Lcd.draw_line(0,200,239,200,0x00ff00);
Lcd.draw_line(200,0,200,239,0x00ff00);
Lcd.draw_fill_rectangle(100,100,130,130,0x0000f0);
Lcd.draw_fill_rectangle(120,120,160,160,0x0000f0);
Lcd.draw_updata();
Lcd.draw_font(10, 0, “adow Phone Test.”, 0xffff00, 0);
}

void loop()
{
Lcd.draw_number(0, 20, sysData++, 0xffff00, 0);
Serial1.print(“ABC.\r\n”);
delay(1000);
}