Commit b5f47d510c52fa4007e8b06caa9aa0f2ce98b24a

Authored by Adhidarma Hadiwinoto
1 parent 2fff2be1cd
Exists in master

MODEM-TESTER: reenable background check signal

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

... ... @@ -74,6 +74,10 @@ port = new SerialPort(config.modem.device, { baudRate: 115200 }, async (err) =>
74 74 await writeToPortDelayed(config.modem_tester.commands[i], 2000);
75 75 }
76 76 }
  77 +
  78 + setTimeout(() => {
  79 + writeToPort('AT+CSQ\r');
  80 + }, 60000);
77 81 });
78 82  
79 83 parsers.setPort(port);