2022-08-25 07:51:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "Configuration.h"
|
|
|
|
|
|
|
|
#ifdef PRUSA_FARM
|
|
|
|
extern uint8_t farm_mode;
|
|
|
|
#else
|
|
|
|
#define farm_mode 0
|
|
|
|
#endif
|
2022-08-25 10:03:43 +00:00
|
|
|
|
|
|
|
extern void prusa_statistics(uint8_t _message);
|
|
|
|
extern void prusa_statistics_update_from_status_screen();
|
|
|
|
extern void prusa_statistics_update_from_lcd_update();
|
|
|
|
extern void farm_mode_init();
|
|
|
|
extern bool farm_prusa_code_seen();
|
|
|
|
extern void farm_gcode_g98();
|
|
|
|
extern void farm_gcode_g99();
|
2022-08-25 10:08:12 +00:00
|
|
|
extern void farm_disable();
|