mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.4 KiB
94 lines
2.4 KiB
%head%
|
|
|
|
<div id="main">
|
|
<div class="header">
|
|
<h1><span class="esp">esp</span> link - Microcontroller Console</h1>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>The Microcontroller console shows the last 1024 characters
|
|
received from UART0, to which a microcontroller is typically attached.</p>
|
|
<p>
|
|
<a class="pure-button button-primary" href="#">Reset µC</a>
|
|
Baud:
|
|
<a href="#" class="pure-button">57600</a>
|
|
<a href="#" class="pure-button">115200</a>
|
|
<a href="#" class="pure-button">230400</a>
|
|
<a href="#" class="pure-button">460800</a>
|
|
</p>
|
|
<pre class="console" id="console"></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="ui.js"></script>
|
|
<script type="text/javascript">
|
|
function loadJSON(url, okCb, errCb) {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.onreadystatechange = handleEv;
|
|
|
|
function handleEv() {
|
|
try {
|
|
//console.log("handleEv", xhr.readyState);
|
|
if(xhr.readyState < 4) {
|
|
return;
|
|
}
|
|
|
|
if(xhr.status !== 200) {
|
|
//console.log("handleEv error cb");
|
|
errCb(xhr);
|
|
return;
|
|
}
|
|
|
|
// all is well
|
|
if(xhr.readyState === 4) {
|
|
//console.log("handleEv success cb");
|
|
okCb(xhr, JSON.parse(xhr.responseText));
|
|
}
|
|
} catch(e) {return;}
|
|
}
|
|
|
|
xhr.open('GET', url, true);
|
|
xhr.send('');
|
|
}
|
|
|
|
function fetchText(delay) {
|
|
el = document.getElementById("console");
|
|
if (el.textEnd == undefined) {
|
|
el.textEnd = 0;
|
|
el.innerHTML = "";
|
|
}
|
|
window.setTimeout(function() {
|
|
loadJSON("/console?start=" + el.textEnd, updateText, retryLoad);
|
|
}, delay);
|
|
}
|
|
|
|
function updateText(xhr, resp) {
|
|
el = document.getElementById("console");
|
|
|
|
delay = 3000;
|
|
if (el == null || resp == null) {
|
|
//console.log("updateText got null response? xhr=", xhr);
|
|
} else if (resp.len == 0) {
|
|
//console.log("updateText got no new text");
|
|
} else {
|
|
console.log("updateText got", resp.len, "chars at", resp.start);
|
|
if (resp.start > el.textEnd) {
|
|
el.innerHTML = el.innerHTML.concat("\r\n<missing lines\r\n");
|
|
}
|
|
el.innerHTML = el.innerHTML.concat(resp.text);
|
|
el.textEnd = resp.start + resp.len;
|
|
delay = 500;
|
|
}
|
|
fetchText(delay);
|
|
}
|
|
|
|
function retryLoad(xhr) {
|
|
fetchText(1000);
|
|
}
|
|
|
|
window.onload = function() {
|
|
fetchText(100);
|
|
}
|
|
</script>
|
|
</body></html>
|
|
|