2017-10-22 20:42:45 +00:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
|
|
|
#ifdef PAT9125
|
|
|
|
|
|
|
|
#include "fsensor.h"
|
|
|
|
#include "pat9125.h"
|
|
|
|
#include "planner.h"
|
2017-11-24 20:53:35 +00:00
|
|
|
#include "fastio.h"
|
2017-10-22 20:42:45 +00:00
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
//#include "LiquidCrystal.h"
|
|
|
|
//extern LiquidCrystal lcd;
|
|
|
|
|
|
|
|
|
2017-11-24 20:53:35 +00:00
|
|
|
#define FSENSOR_ERR_MAX 5 //filament sensor max error count
|
|
|
|
#define FSENSOR_INT_PIN 63 //filament sensor interrupt pin PK1
|
|
|
|
#define FSENSOR_INT_PIN_MSK 0x02 //filament sensor interrupt pin mask (bit1)
|
|
|
|
#define FSENSOR_CHUNK_LEN 560 //filament sensor chunk length in steps
|
2017-10-24 17:45:15 +00:00
|
|
|
|
2017-10-22 20:42:45 +00:00
|
|
|
extern void stop_and_save_print_to_ram(float z_move, float e_move);
|
|
|
|
extern void restore_print_from_ram_and_continue(float e_move);
|
2017-10-24 17:45:15 +00:00
|
|
|
extern int8_t FSensorStateMenu;
|
2017-10-22 20:42:45 +00:00
|
|
|
|
|
|
|
void fsensor_stop_and_save_print()
|
|
|
|
{
|
2017-11-27 17:30:16 +00:00
|
|
|
stop_and_save_print_to_ram(0, 0); //XYZE - no change
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void fsensor_restore_print_and_continue()
|
|
|
|
{
|
|
|
|
restore_print_from_ram_and_continue(0); //XYZ = orig, E - no change
|
|
|
|
}
|
|
|
|
|
2017-11-24 20:53:35 +00:00
|
|
|
//uint8_t fsensor_int_pin = FSENSOR_INT_PIN;
|
|
|
|
uint8_t fsensor_int_pin_old = 0;
|
2017-10-24 17:45:15 +00:00
|
|
|
int16_t fsensor_chunk_len = FSENSOR_CHUNK_LEN;
|
2017-10-22 20:42:45 +00:00
|
|
|
bool fsensor_enabled = true;
|
2017-10-24 17:45:15 +00:00
|
|
|
//bool fsensor_ignore_error = true;
|
2017-10-22 20:42:45 +00:00
|
|
|
bool fsensor_M600 = false;
|
|
|
|
uint8_t fsensor_err_cnt = 0;
|
2017-10-24 17:45:15 +00:00
|
|
|
int16_t fsensor_st_cnt = 0;
|
2017-11-24 20:53:35 +00:00
|
|
|
uint8_t fsensor_log = 1;
|
2017-10-22 20:42:45 +00:00
|
|
|
|
|
|
|
|
2017-11-28 21:44:58 +00:00
|
|
|
bool fsensor_enable()
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
2017-11-28 21:44:58 +00:00
|
|
|
puts_P(PSTR("fsensor_enable\n"));
|
|
|
|
int pat9125 = pat9125_init(PAT9125_XRES, PAT9125_YRES);
|
|
|
|
printf_P(PSTR("PAT9125_init:%d\n"), pat9125);
|
|
|
|
fsensor_enabled = pat9125?true:false;
|
2017-10-24 17:45:15 +00:00
|
|
|
// fsensor_ignore_error = true;
|
2017-10-22 20:42:45 +00:00
|
|
|
fsensor_M600 = false;
|
2017-10-24 17:45:15 +00:00
|
|
|
fsensor_err_cnt = 0;
|
2017-11-28 21:44:58 +00:00
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, fsensor_enabled?0xFF:0x00);
|
|
|
|
FSensorStateMenu = fsensor_enabled?true:false;
|
|
|
|
return fsensor_enabled;
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void fsensor_disable()
|
|
|
|
{
|
2017-11-28 21:44:58 +00:00
|
|
|
puts_P(PSTR("fsensor_disable\n"));
|
2017-10-22 20:42:45 +00:00
|
|
|
fsensor_enabled = false;
|
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x00);
|
|
|
|
FSensorStateMenu = 0;
|
|
|
|
}
|
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
void pciSetup(byte pin)
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
|
|
|
*digitalPinToPCMSK(pin) |= bit (digitalPinToPCMSKbit(pin)); // enable pin
|
|
|
|
PCIFR |= bit (digitalPinToPCICRbit(pin)); // clear any outstanding interrupt
|
|
|
|
PCICR |= bit (digitalPinToPCICRbit(pin)); // enable interrupt for the group
|
|
|
|
}
|
|
|
|
|
|
|
|
void fsensor_setup_interrupt()
|
|
|
|
{
|
2017-11-24 20:53:35 +00:00
|
|
|
// uint8_t fsensor_int_pin = FSENSOR_INT_PIN;
|
|
|
|
// uint8_t fsensor_int_pcmsk = digitalPinToPCMSKbit(pin);
|
|
|
|
// uint8_t fsensor_int_pcicr = digitalPinToPCICRbit(pin);
|
2017-10-22 20:42:45 +00:00
|
|
|
|
2017-11-24 20:53:35 +00:00
|
|
|
pinMode(FSENSOR_INT_PIN, OUTPUT);
|
|
|
|
digitalWrite(FSENSOR_INT_PIN, LOW);
|
|
|
|
fsensor_int_pin_old = 0;
|
2017-10-22 20:42:45 +00:00
|
|
|
|
2017-11-24 20:53:35 +00:00
|
|
|
pciSetup(FSENSOR_INT_PIN);
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ISR(PCINT2_vect)
|
|
|
|
{
|
2017-10-24 17:45:15 +00:00
|
|
|
// return;
|
2017-11-24 20:53:35 +00:00
|
|
|
if (!((fsensor_int_pin_old ^ PINK) & FSENSOR_INT_PIN_MSK)) return;
|
|
|
|
// puts("PCINT2\n");
|
|
|
|
// return;
|
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
int st_cnt = fsensor_st_cnt;
|
|
|
|
fsensor_st_cnt = 0;
|
2017-10-22 20:42:45 +00:00
|
|
|
sei();
|
2017-11-24 20:53:35 +00:00
|
|
|
/* *digitalPinToPCMSK(fsensor_int_pin) &= ~bit(digitalPinToPCMSKbit(fsensor_int_pin));
|
2017-10-22 20:42:45 +00:00
|
|
|
digitalWrite(fsensor_int_pin, HIGH);
|
2017-11-24 20:53:35 +00:00
|
|
|
*digitalPinToPCMSK(fsensor_int_pin) |= bit(digitalPinToPCMSKbit(fsensor_int_pin));*/
|
2017-10-24 17:45:15 +00:00
|
|
|
pat9125_update_y();
|
|
|
|
if (st_cnt != 0)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_FSENSOR_LOG
|
2017-11-16 19:52:13 +00:00
|
|
|
if (fsensor_log)
|
|
|
|
{
|
|
|
|
MYSERIAL.print("cnt=");
|
|
|
|
MYSERIAL.print(st_cnt, DEC);
|
|
|
|
MYSERIAL.print(" dy=");
|
|
|
|
MYSERIAL.print(pat9125_y, DEC);
|
|
|
|
}
|
2017-10-24 17:45:15 +00:00
|
|
|
#endif //DEBUG_FSENSOR_LOG
|
|
|
|
if (st_cnt != 0)
|
|
|
|
{
|
|
|
|
if( (pat9125_y == 0) || ((pat9125_y > 0) && (st_cnt < 0)) || ((pat9125_y < 0) && (st_cnt > 0)))
|
|
|
|
{ //invalid movement
|
2017-11-16 19:52:13 +00:00
|
|
|
if (st_cnt > 0) //only positive movements
|
|
|
|
fsensor_err_cnt++;
|
2017-10-24 17:45:15 +00:00
|
|
|
#ifdef DEBUG_FSENSOR_LOG
|
2017-11-16 19:52:13 +00:00
|
|
|
if (fsensor_log)
|
|
|
|
{
|
2017-10-24 17:45:15 +00:00
|
|
|
MYSERIAL.print("\tNG ! err=");
|
|
|
|
MYSERIAL.println(fsensor_err_cnt, DEC);
|
2017-11-16 19:52:13 +00:00
|
|
|
}
|
2017-10-24 17:45:15 +00:00
|
|
|
#endif //DEBUG_FSENSOR_LOG
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //propper movement
|
2017-11-16 19:52:13 +00:00
|
|
|
if (fsensor_err_cnt > 0)
|
|
|
|
fsensor_err_cnt--;
|
|
|
|
// fsensor_err_cnt = 0;
|
2017-10-24 17:45:15 +00:00
|
|
|
#ifdef DEBUG_FSENSOR_LOG
|
2017-11-16 19:52:13 +00:00
|
|
|
if (fsensor_log)
|
|
|
|
{
|
|
|
|
MYSERIAL.print("\tOK err=");
|
|
|
|
MYSERIAL.println(fsensor_err_cnt, DEC);
|
|
|
|
}
|
2017-10-24 17:45:15 +00:00
|
|
|
#endif //DEBUG_FSENSOR_LOG
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //no movement
|
|
|
|
#ifdef DEBUG_FSENSOR_LOG
|
2017-11-16 19:52:13 +00:00
|
|
|
if (fsensor_log)
|
2017-10-24 17:45:15 +00:00
|
|
|
MYSERIAL.println("\tOK 0");
|
|
|
|
#endif //DEBUG_FSENSOR_LOG
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pat9125_y = 0;
|
|
|
|
return;
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
void fsensor_st_block_begin(block_t* bl)
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
2017-10-30 14:45:29 +00:00
|
|
|
if (!fsensor_enabled) return;
|
2017-11-24 20:53:35 +00:00
|
|
|
if (((fsensor_st_cnt > 0) && (bl->direction_bits & 0x8)) ||
|
|
|
|
((fsensor_st_cnt < 0) && !(bl->direction_bits & 0x8)))
|
|
|
|
{
|
|
|
|
if (_READ(63)) _WRITE(63, LOW);
|
|
|
|
else _WRITE(63, HIGH);
|
|
|
|
}
|
|
|
|
// PINK |= FSENSOR_INT_PIN_MSK; //toggle pin
|
|
|
|
// _WRITE(fsensor_int_pin, LOW);
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-24 17:45:15 +00:00
|
|
|
void fsensor_st_block_chunk(block_t* bl, int cnt)
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
2017-10-30 14:45:29 +00:00
|
|
|
if (!fsensor_enabled) return;
|
2017-10-24 17:45:15 +00:00
|
|
|
fsensor_st_cnt += (bl->direction_bits & 0x8)?-cnt:cnt;
|
|
|
|
if ((fsensor_st_cnt >= fsensor_chunk_len) || (fsensor_st_cnt <= -fsensor_chunk_len))
|
2017-11-24 20:53:35 +00:00
|
|
|
{
|
|
|
|
if (_READ(63)) _WRITE(63, LOW);
|
|
|
|
else _WRITE(63, HIGH);
|
|
|
|
}
|
|
|
|
// PINK |= FSENSOR_INT_PIN_MSK; //toggle pin
|
|
|
|
// _WRITE(fsensor_int_pin, LOW);
|
2017-10-22 20:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void fsensor_update()
|
|
|
|
{
|
|
|
|
if (!fsensor_enabled) return;
|
2017-10-24 17:45:15 +00:00
|
|
|
if (fsensor_err_cnt > FSENSOR_ERR_MAX)
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
2017-10-24 17:45:15 +00:00
|
|
|
MYSERIAL.println("fsensor_update (fsensor_err_cnt > FSENSOR_ERR_MAX)");
|
|
|
|
/* if (fsensor_ignore_error)
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
|
|
|
MYSERIAL.println("fsensor_update - error ignored)");
|
|
|
|
fsensor_ignore_error = false;
|
|
|
|
}
|
2017-10-24 17:45:15 +00:00
|
|
|
else*/
|
2017-10-22 20:42:45 +00:00
|
|
|
{
|
|
|
|
MYSERIAL.println("fsensor_update - ERROR!!!");
|
|
|
|
fsensor_stop_and_save_print();
|
|
|
|
enquecommand_front_P((PSTR("M600")));
|
|
|
|
fsensor_M600 = true;
|
|
|
|
fsensor_enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //PAT9125
|