Commit abdd1892a27cb8fd60a6f18022de938de2062577

Authored by Adhidarma Hadiwinoto
1 parent 956d2003e4
Exists in master

MODEM-TESTER: REGEX_WAIT_FOR_OK_OR_ERROR include OK or ERROR indicator

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

1   -const REGEX_WAIT_FOR_OK_OR_ERROR = /\n(?:OK|ERROR)\r/;
  1 +// const REGEX_WAIT_FOR_OK_OR_ERROR = /\n(?:OK|ERROR)\r/;
  2 +const REGEX_WAIT_FOR_OK_OR_ERROR = /\n(OK|ERROR)\r/;
2 3  
3 4 const SerialPort = require('serialport');
4 5