123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #ifndef _EMERGENCY_PARSER_H_
- #define _EMERGENCY_PARSER_H_
- extern volatile bool wait_for_user, wait_for_heatup;
- void quickstop_stepper();
- class EmergencyParser {
- public:
-
- enum State : char {
- EP_RESET,
- EP_N,
- EP_M,
- EP_M1,
- EP_M10,
- EP_M108,
- EP_M11,
- EP_M112,
- EP_M4,
- EP_M41,
- EP_M410,
- EP_IGNORE
- };
- static bool killed_by_M112;
- static State state;
- EmergencyParser() {}
- __attribute__((always_inline)) inline
- static void update(const uint8_t c) {
- switch (state) {
- case EP_RESET:
- switch (c) {
- case ' ': break;
- case 'N': state = EP_N; break;
- case 'M': state = EP_M; break;
- default: state = EP_IGNORE;
- }
- break;
- case EP_N:
- switch (c) {
- case '0': case '1': case '2':
- case '3': case '4': case '5':
- case '6': case '7': case '8':
- case '9': case '-': case ' ': break;
- case 'M': state = EP_M; break;
- default: state = EP_IGNORE;
- }
- break;
- case EP_M:
- switch (c) {
- case ' ': break;
- case '1': state = EP_M1; break;
- case '4': state = EP_M4; break;
- default: state = EP_IGNORE;
- }
- break;
- case EP_M1:
- switch (c) {
- case '0': state = EP_M10; break;
- case '1': state = EP_M11; break;
- default: state = EP_IGNORE;
- }
- break;
- case EP_M10:
- state = (c == '8') ? EP_M108 : EP_IGNORE;
- break;
- case EP_M11:
- state = (c == '2') ? EP_M112 : EP_IGNORE;
- break;
- case EP_M4:
- state = (c == '1') ? EP_M41 : EP_IGNORE;
- break;
- case EP_M41:
- state = (c == '0') ? EP_M410 : EP_IGNORE;
- break;
- case EP_IGNORE:
- if (c == '\n') state = EP_RESET;
- break;
- default:
- if (c == '\n') {
- switch (state) {
- case EP_M108:
- wait_for_user = wait_for_heatup = false;
- break;
- case EP_M112:
- killed_by_M112 = true;
- break;
- case EP_M410:
- quickstop_stepper();
- break;
- default:
- break;
- }
- state = EP_RESET;
- }
- }
- }
- };
- extern EmergencyParser emergency_parser;
- #endif
|