Prusa-Firmware/Firmware/fsensor.h

111 lines
2.6 KiB
C
Raw Normal View History

2018-10-09 20:33:54 +00:00
//! @file
#ifndef FSENSOR_H
#define FSENSOR_H
2018-07-20 23:57:41 +00:00
#include <inttypes.h>
#include "config.h"
2018-10-09 20:33:54 +00:00
// enable/disable flag
2018-07-20 23:57:41 +00:00
extern bool fsensor_enabled;
2018-10-09 20:33:54 +00:00
// not responding flag
2018-07-20 23:57:41 +00:00
extern bool fsensor_not_responding;
#ifdef PAT9125
// optical checking "chunk lenght" (already in steps)
extern int16_t fsensor_chunk_len;
// count of soft failures
extern uint8_t fsensor_softfail;
#endif
2018-10-09 20:33:54 +00:00
//! @name save restore printing
//! @{
extern void fsensor_stop_and_save_print(void);
//! restore print - restore position and heatup to original temperature
extern void fsensor_restore_print_and_continue(void);
//! split the current gcode stream to insert new instructions
extern void fsensor_checkpoint_print(void);
2018-10-09 20:33:54 +00:00
//! @}
2018-10-09 20:33:54 +00:00
//! initialize
extern void fsensor_init(void);
#ifdef PAT9125
//! update axis resolution
extern void fsensor_set_axis_steps_per_unit(float u);
#endif
2018-10-09 20:33:54 +00:00
//! @name enable/disable
//! @{
extern bool fsensor_enable(bool bUpdateEEPROM=true);
extern void fsensor_disable(bool bUpdateEEPROM=true);
2018-10-09 20:33:54 +00:00
//! @}
//autoload feature enabled
extern bool fsensor_autoload_enabled;
extern void fsensor_autoload_set(bool State);
extern void fsensor_update(void);
2019-01-24 15:14:02 +00:00
#ifdef PAT9125
2018-10-09 20:33:54 +00:00
//! setup pin-change interrupt
extern void fsensor_setup_interrupt(void);
2018-10-09 20:33:54 +00:00
//! @name autoload support
//! @{
2019-01-24 15:14:02 +00:00
extern void fsensor_autoload_check_start(void);
extern void fsensor_autoload_check_stop(void);
#endif //PAT9125
extern bool fsensor_check_autoload(void);
2018-10-09 20:33:54 +00:00
//! @}
#ifdef PAT9125
2018-10-09 20:33:54 +00:00
//! @name optical quality measurement support
//! @{
extern bool fsensor_oq_meassure_enabled;
extern void fsensor_oq_meassure_set(bool State);
extern void fsensor_oq_meassure_start(uint8_t skip);
extern void fsensor_oq_meassure_stop(void);
extern bool fsensor_oq_result(void);
2018-10-09 20:33:54 +00:00
//! @}
//! @name callbacks from stepper
//! @{
extern void fsensor_st_block_chunk(int cnt);
2020-03-30 13:50:50 +00:00
// debugging
extern uint8_t fsensor_log;
// There's really nothing to do in block_begin: the stepper ISR likely has
// called us already at the end of the last block, making this integration
// redundant. LA1.5 might not always do that during a coasting move, so attempt
// to drain fsensor_st_cnt anyway at the beginning of the new block.
#define fsensor_st_block_begin(rev) fsensor_st_block_chunk(0)
2018-10-09 20:33:54 +00:00
//! @}
#endif //PAT9125
#ifdef IR_SENSOR_ANALOG
#define IR_SENSOR_STEADY 10 // [ms]
enum class ClFsensorPCB:uint_least8_t
{
_Old=0,
_Rev03b=1,
_Undef=EEPROM_EMPTY_VALUE
};
enum class ClFsensorActionNA:uint_least8_t
{
_Continue=0,
_Pause=1,
_Undef=EEPROM_EMPTY_VALUE
};
extern ClFsensorPCB oFsensorPCB;
extern ClFsensorActionNA oFsensorActionNA;
extern bool fsensor_IR_check();
#endif //IR_SENSOR_ANALOG
#endif //FSENSOR_H