heater.h/.c: remove a few obsolete #includes.

This commit is contained in:
Markus Hitter 2010-10-07 22:42:43 +02:00
parent 9839ac9fff
commit 68f4610e79
2 changed files with 0 additions and 3 deletions

View File

@ -3,9 +3,7 @@
#include <avr/eeprom.h>
#include "sersendf.h"
#include "config.h"
#include "debug.h"
#include "arduino.h"
int16_t heater_p = 0;
int16_t heater_i = 0;

View File

@ -2,7 +2,6 @@
#define _HEATER_H
#include "config.h"
#include <stdint.h>
#ifdef HEATER_PWM
#define enable_heater() do { TCCR0A |= MASK(COM0A1); } while (0)