39eb728d54
Kudos @gudnimg
24 lines
549 B
C
24 lines
549 B
C
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
#include "Configuration.h"
|
|
|
|
#ifdef PRUSA_FARM
|
|
extern uint8_t farm_mode;
|
|
#else
|
|
#define farm_mode 0
|
|
#endif
|
|
|
|
#ifdef PRUSA_M28
|
|
extern bool prusa_sd_card_upload;
|
|
extern void serial_read_stream();
|
|
#endif
|
|
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();
|
|
extern void farm_disable();
|