2019-03-17 10:57:25 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfigPre.h"
|
|
|
|
|
|
|
|
// BLTouch commands are sent as servo angles
|
|
|
|
typedef unsigned char BLTCommand;
|
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
#define BLTOUCH_DEPLOY 10
|
|
|
|
#define BLTOUCH_SW_MODE 60
|
|
|
|
#define BLTOUCH_STOW 90
|
|
|
|
#define BLTOUCH_SELFTEST 120
|
2019-05-18 00:10:18 +00:00
|
|
|
#define BLTOUCH_MODE_STORE 130
|
2019-05-08 02:25:54 +00:00
|
|
|
#define BLTOUCH_5V_MODE 140
|
|
|
|
#define BLTOUCH_OD_MODE 150
|
|
|
|
#define BLTOUCH_RESET 160
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The following commands may require different delays.
|
|
|
|
*
|
|
|
|
* ANTClabs recommends 2000ms for 5V/OD commands. However it is
|
|
|
|
* not common for other commands to immediately follow these,
|
|
|
|
* and testing has shown that these complete in 500ms reliably.
|
|
|
|
*
|
|
|
|
* AntClabs recommends 750ms for Deploy/Stow, otherwise you will
|
|
|
|
* not catch an alarm state until the following move command.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLTOUCH_SET5V_DELAY
|
|
|
|
#define BLTOUCH_SET5V_DELAY BLTOUCH_DELAY
|
|
|
|
#endif
|
|
|
|
#ifndef BLTOUCH_SETOD_DELAY
|
|
|
|
#define BLTOUCH_SETOD_DELAY BLTOUCH_DELAY
|
|
|
|
#endif
|
2019-05-18 00:10:18 +00:00
|
|
|
#ifndef BLTOUCH_MODE_STORE_DELAY
|
|
|
|
#define BLTOUCH_MODE_STORE_DELAY BLTOUCH_DELAY
|
|
|
|
#endif
|
2019-05-08 02:25:54 +00:00
|
|
|
#ifndef BLTOUCH_DEPLOY_DELAY
|
|
|
|
#define BLTOUCH_DEPLOY_DELAY 750
|
|
|
|
#endif
|
|
|
|
#ifndef BLTOUCH_STOW_DELAY
|
|
|
|
#define BLTOUCH_STOW_DELAY 750
|
|
|
|
#endif
|
|
|
|
#ifndef BLTOUCH_RESET_DELAY
|
|
|
|
#define BLTOUCH_RESET_DELAY BLTOUCH_DELAY
|
|
|
|
#endif
|
2019-03-17 10:57:25 +00:00
|
|
|
|
|
|
|
class BLTouch {
|
|
|
|
public:
|
2019-05-26 02:56:47 +00:00
|
|
|
static void init(const bool set_voltage=false);
|
|
|
|
static bool last_written_mode; // Initialized by settings.load, 0 = Open Drain; 1 = 5V Drain
|
2019-03-17 10:57:25 +00:00
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
// DEPLOY and STOW are wrapped for error handling - these are used by homing and by probing
|
|
|
|
FORCE_INLINE static bool deploy() { return deploy_proc(); }
|
|
|
|
FORCE_INLINE static bool stow() { return stow_proc(); }
|
|
|
|
FORCE_INLINE static bool status() { return status_proc(); }
|
2019-03-17 10:57:25 +00:00
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
// Native BLTouch commands ("Underscore"...), used in lcd menus and internally
|
|
|
|
FORCE_INLINE static void _reset() { command(BLTOUCH_RESET, BLTOUCH_RESET_DELAY); }
|
2019-03-24 04:28:15 +00:00
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
FORCE_INLINE static void _selftest() { command(BLTOUCH_SELFTEST, BLTOUCH_DELAY); }
|
2019-03-17 10:57:25 +00:00
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
FORCE_INLINE static void _set_SW_mode() { command(BLTOUCH_SW_MODE, BLTOUCH_DELAY); }
|
2019-05-18 00:10:18 +00:00
|
|
|
FORCE_INLINE static void _reset_SW_mode() { if (triggered()) _stow(); else _deploy(); }
|
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
FORCE_INLINE static void _set_5V_mode() { command(BLTOUCH_5V_MODE, BLTOUCH_SET5V_DELAY); }
|
|
|
|
FORCE_INLINE static void _set_OD_mode() { command(BLTOUCH_OD_MODE, BLTOUCH_SETOD_DELAY); }
|
2019-05-18 00:10:18 +00:00
|
|
|
FORCE_INLINE static void _mode_store() { command(BLTOUCH_MODE_STORE, BLTOUCH_MODE_STORE_DELAY); }
|
2019-05-08 02:25:54 +00:00
|
|
|
|
|
|
|
FORCE_INLINE static void _deploy() { command(BLTOUCH_DEPLOY, BLTOUCH_DEPLOY_DELAY); }
|
|
|
|
FORCE_INLINE static void _stow() { command(BLTOUCH_STOW, BLTOUCH_STOW_DELAY); }
|
2019-03-24 03:58:34 +00:00
|
|
|
|
2019-05-26 02:56:47 +00:00
|
|
|
FORCE_INLINE static void mode_conv_5V() { mode_conv_proc(true); }
|
|
|
|
FORCE_INLINE static void mode_conv_OD() { mode_conv_proc(false); }
|
|
|
|
|
2019-03-24 03:58:34 +00:00
|
|
|
private:
|
2019-05-08 02:25:54 +00:00
|
|
|
FORCE_INLINE static bool _deploy_query_alarm() { return command(BLTOUCH_DEPLOY, BLTOUCH_DEPLOY_DELAY); }
|
|
|
|
FORCE_INLINE static bool _stow_query_alarm() { return command(BLTOUCH_STOW, BLTOUCH_STOW_DELAY); }
|
|
|
|
|
|
|
|
static void clear();
|
|
|
|
static bool command(const BLTCommand cmd, const millis_t &ms);
|
2019-05-26 02:56:47 +00:00
|
|
|
static bool triggered();
|
2019-05-08 02:25:54 +00:00
|
|
|
static bool deploy_proc();
|
|
|
|
static bool stow_proc();
|
|
|
|
static bool status_proc();
|
2019-05-26 02:56:47 +00:00
|
|
|
static void mode_conv_proc(const bool M5V);
|
2019-03-17 10:57:25 +00:00
|
|
|
};
|
|
|
|
|
2019-05-08 02:25:54 +00:00
|
|
|
// Deploy/stow angles for use by servo.cpp / servo.h
|
2019-03-17 10:57:25 +00:00
|
|
|
#define BLTOUCH_ANGLES { BLTOUCH_DEPLOY, BLTOUCH_STOW }
|
|
|
|
|
|
|
|
extern BLTouch bltouch;
|