make sensor and heater structs visually smaller

This commit is contained in:
Michael Moon 2010-11-11 00:55:07 +11:00
parent cb4e157d62
commit 7dc8f8d8ff
1 changed files with 4 additions and 10 deletions

View File

@ -228,11 +228,8 @@ struct {
uint8_t heater_index;
} temp_sensors[NUM_TEMP_SENSORS] =
{
{
TT_INTERCOM,
0,
0
}
// type pin heater
{ TT_INTERCOM, 0, 0 }
};
#endif
@ -269,11 +266,8 @@ struct {
volatile uint8_t *heater_pwm;
} heaters[NUM_HEATERS]/* =
{
{
&PORTD,
PIND6,
&OCR0A
}
// port pin pwm
{ &PORTD, PIND6, &OCR0A }
}*/;
#endif