This commit is contained in:
pvvx 2017-06-21 03:10:45 +03:00
parent 39f77eb92b
commit a9ef4ff5c0
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ var rdnextflg = false;
var cur_idx = 0;
ws = new WebSocket('ws://rtl871x0/web.cgi');
ws.binaryType = 'arraybuffer';
ws.onopen = function(){ws.send('adc')};
ws.onopen = function(){ws.send('adc');ws.send('adc')};
ws.onmessage = function (event) {
if(event.data instanceof ArrayBuffer) {
var wordarray = new Uint16Array(event.data);

View file

@ -33,7 +33,7 @@
//------------------------------------------------------------------------------
#define ADC_USE_TIMER TIMER3 // если назначено, то для чтения ADC используется таймер
//#define ADC_USE_TIMER TIMER3 // если назначено, то для чтения ADC используется таймер
// иначе ADC int
//------------------------------------------------------------------------------