Beispiel #1
0
        public void Send_CM_CMDs_As_Original_Values()
        {
            DP213_CMDS_Write_Read_Update_Variables cmds = DP213_CMDS_Write_Read_Update_Variables.getInstance();

            for (int Set_index = 0; Set_index < DP213_Static.Max_Set_Amount; Set_index++)
            {
                Gamma_Set Set = DP213_Static.Convert_to_Gamma_Set_From_int(Set_index);
                if (Is_GammaSet_ELVSS_Changed[Set_index])
                {
                    cmds.Send_ELVSS_CMD(Set);
                }
                if (Is_GammaSet_Cold_ELVSS_Changed[Set_index])
                {
                    cmds.Send_Cold_ELVSS_CMD(Set);
                }
                if (Is_GammaSet_Vinit2_Changed[Set_index])
                {
                    cmds.Send_Vinit2_CMD(Set);
                }
                if (Is_GammaSet_Cold_Vinit2_Changed[Set_index])
                {
                    cmds.Send_Cold_Vinit2_CMD(Set);
                }
            }
        }
Beispiel #2
0
        public void Send_CMDs_Normal_RGB_AM0_AM1_As_Original_Values()
        {
            DP213_CMDS_Write_Read_Update_Variables cmds = DP213_CMDS_Write_Read_Update_Variables.getInstance();

            for (int Set_index = 0; Set_index < DP213_Static.Max_Set_Amount; Set_index++)
            {
                Gamma_Set Set = DP213_Static.Convert_to_Gamma_Set_From_int(Set_index);
                for (int band_index = 0; band_index < DP213_Static.Max_HBM_and_Normal_Band_Amount; band_index++)
                {
                    if (Is_GammaSet_Normal_RGB_Changed[Set_index, band_index])
                    {
                        cmds.Send_Gamma_AM1_AM0(Set, band_index);
                    }
                }
            }
        }
Beispiel #3
0
        public void Send_Changed_CMDs_REF0_REF4095_Vreg1_As_Original_Values()
        {
            DP213_CMDS_Write_Read_Update_Variables cmds = DP213_CMDS_Write_Read_Update_Variables.getInstance();

            if (Is_VREF0_or_VREF4095_Changed)
            {
                cmds.Send_VREF0_VREF4095();
            }

            for (int Set_index = 0; Set_index < DP213_Static.Max_Set_Amount; Set_index++)
            {
                if (Is_Normal_GammaSet_Vreg1_Changed[Set_index])
                {
                    Gamma_Set Set = DP213_Static.Convert_to_Gamma_Set_From_int(Set_index);
                    cmds.Send_Vreg1(Set);
                }
            }
        }