heater_sim.c: Note that the heater isn't implemented in the simulator.

This commit is contained in:
David Forrest 2014-02-08 23:18:11 -05:00 committed by Markus Hitter
parent fdfd202e5d
commit f3666fc43f
1 changed files with 4 additions and 1 deletions

View File

@ -20,8 +20,11 @@ void pid_set_p(heater_t index, int32_t p) {}
void pid_set_i(heater_t index, int32_t i) {}
void pid_set_d(heater_t index, int32_t d) {}
void pid_set_i_limit(heater_t index, int32_t i_limit) {}
void heater_save_settings(void) {}
void heater_save_settings(void) {
sim_info("heater not implemented in simulator.");
}
#endif /* EECONFIG */
void heater_print(uint16_t i) {
sim_info("heater not implemented in simulator.");
}