Lines Matching defs:light

82 	LightCtrl light;
308 regs[0x2a] = _HIBYTE((u_short)cal->light.green_pwm_duty);
309 regs[0x2b] = _LOBYTE((u_short)cal->light.green_pwm_duty);
311 regs[0x2c] = _HIBYTE((u_short)cal->light.red_light_on);
312 regs[0x2d] = _LOBYTE((u_short)cal->light.red_light_on);
313 regs[0x2e] = _HIBYTE((u_short)cal->light.red_light_off);
314 regs[0x2f] = _LOBYTE((u_short)cal->light.red_light_off);
316 regs[0x30] = _HIBYTE((u_short)cal->light.green_light_on);
317 regs[0x31] = _LOBYTE((u_short)cal->light.green_light_on);
318 regs[0x32] = _HIBYTE((u_short)cal->light.green_light_off);
319 regs[0x33] = _LOBYTE((u_short)cal->light.green_light_off);
321 regs[0x34] = _HIBYTE((u_short)cal->light.blue_light_on);
322 regs[0x35] = _LOBYTE((u_short)cal->light.blue_light_on);
323 regs[0x36] = _HIBYTE((u_short)cal->light.blue_light_off);
324 regs[0x37] = _LOBYTE((u_short)cal->light.blue_light_off);
326 hw->red_lamp_on = (u_short)cal->light.red_light_on;
327 hw->red_lamp_off = (u_short)cal->light.red_light_off;
328 hw->green_lamp_on = (u_short)cal->light.green_light_on;
329 hw->green_lamp_off = (u_short)cal->light.green_light_off;
330 hw->blue_lamp_on = (u_short)cal->light.blue_light_on;
331 hw->blue_lamp_off = (u_short)cal->light.blue_light_off;
427 &cal.light.red_light_on, &cal.light.red_light_off,
428 &cal.light.green_light_on, &cal.light.green_light_off,
429 &cal.light.blue_light_on, &cal.light.blue_light_off,
430 &cal.light.green_pwm_duty );
467 cal->light.green_pwm_duty = regs[0x2a] * 256 + regs[0x2b];
469 cal->light.red_light_on = regs[0x2c] * 256 + regs[0x2d];
470 cal->light.red_light_off = regs[0x2e] * 256 + regs[0x2f];
471 cal->light.green_light_on = regs[0x30] * 256 + regs[0x31];
472 cal->light.green_light_off = regs[0x32] * 256 + regs[0x33];
473 cal->light.blue_light_on = regs[0x34] * 256 + regs[0x35];
474 cal->light.blue_light_off = regs[0x36] * 256 + regs[0x37];
518 cal.light.red_light_on, cal.light.red_light_off,
519 cal.light.green_light_on, cal.light.green_light_off,
520 cal.light.blue_light_on, cal.light.blue_light_off,
521 cal.light.green_pwm_duty );