Ejemplo n.º 1
0
        public void Send_CMDs_AOD_RGB_AM0_AM1_As_0x00(Gamma_Set OC_Mode1_GammaSet)
        {
            DP213_CMDS_Write_Read_Update_Variables cmds = DP213_CMDS_Write_Read_Update_Variables.getInstance();

            for (int band_index = DP213_Static.Max_HBM_and_Normal_Band_Amount; band_index < DP213_Static.Max_Band_Amount; band_index++)
            {
                if (Is_AOD_RGB_Changed[band_index - DP213_Static.Max_HBM_and_Normal_Band_Amount])
                {
                    cmds.Send_Gamma_AM1_AM0_As_0x00s(OC_Mode1_GammaSet, band_index);
                }
            }
        }
Ejemplo n.º 2
0
        public void Send_CMDs_Normal_RGB_AM0_AM1_As_0x00()
        {
            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_As_0x00s(Set, band_index);
                    }
                }
            }
        }