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.

dlp4500 gui wu与win10系统兼容性

Other Parts Discussed in Thread: DLP4500

使用的gui是v3.1.0控制dlp4500,电脑操作系统是win10,试了两台电脑都是同一种情况,刚开始都能加载图片,后来都显示如下,按网上方法试过,查文档目录,更新驱动都试过,没用,请问如何解决,电脑配置文件有点多,不想换系统。软件型号v3.1.0

  • 您好!

    感谢使用TI的DLP产品。

    LightCrafter4500 EVM的GUI V3.1.0软件是基于win7设计和验证的,目前并没有基于win10的软件。如果希望在win10上正常使用,可以尝试使用QT重新编译。具体步骤如下:

    1.Install QT v4.2.1.

    2.Unzip the "LightCrafter4500_GUI_Source_Code_v3.1.0.zip" located at the GUI installation directory.

    3.Inside the extracted folder, go to the GUI folder, find the file LCr4500.pro and open it with QT. 

    4.In the project, find out "dlpc350_usb.cpp", open it. Delete ONLY line 84 (DeviceHandle = hid_open(MY_VID, MY_PID, NULL);) and paste the following snippet at in place of line 84 and save the file.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    struct hid_device_info *hid_info;
    hid_info = hid_enumerate(MY_VID, MY_PID);
    if(hid_info == NULL)
    {
        USBConnected = 0;
        return -1;
    }
     
    DeviceHandle = NULL;
     
    if(0 == hid_info->interface_number)
    {
        DeviceHandle = hid_open_path(hid_info->path);
    }
    else
    {
        struct hid_device_info *hid_next_info = hid_info->next;
     
        if(hid_next_info != NULL)
        {
            DeviceHandle = hid_open_path(hid_next_info->path);
        }
    }

    5. In the project, find out "mainwindow.cpp", open it. Delete ONLY line no. 7257 ("DLPC350_WaitForFlashReady();") and save it. 

    6. Build and run the project. GUI will start automatically after the project has built. Now try to flash the LCR4500 again, it should successfully flash it.

     谢谢

  • 用了这个没法firmware upload。 原版GUI可以。

  • 您好!

    请问报什么错误?除了修改源码以外,需要将FlashDeviceParameters.txt文件拷贝到编译的路径下。

    谢谢