diff --git a/compiled_firmware_files/hardware_rev_1/nrgitho-hw1-v2.2-beta6.bin b/compiled_firmware_files/hardware_rev_1/nrgitho-hw1-v2.2-beta6.bin
index 630b523c..9bfb6c7e 100644
Binary files a/compiled_firmware_files/hardware_rev_1/nrgitho-hw1-v2.2-beta6.bin and b/compiled_firmware_files/hardware_rev_1/nrgitho-hw1-v2.2-beta6.bin differ
diff --git a/compiled_firmware_files/hardware_rev_2/NRG_itho_wifi_HW2x_FW2.2-rftest.bin b/compiled_firmware_files/hardware_rev_2/NRG_itho_wifi_HW2x_FW2.2-rftest.bin
new file mode 100644
index 00000000..67739030
Binary files /dev/null and b/compiled_firmware_files/hardware_rev_2/NRG_itho_wifi_HW2x_FW2.2-rftest.bin differ
diff --git a/compiled_firmware_files/hardware_rev_2/nrgitho-hw2-v2.2-beta6.bin b/compiled_firmware_files/hardware_rev_2/nrgitho-hw2-v2.2-beta6.bin
index 3a842fcd..c0d267d4 100644
Binary files a/compiled_firmware_files/hardware_rev_2/nrgitho-hw2-v2.2-beta6.bin and b/compiled_firmware_files/hardware_rev_2/nrgitho-hw2-v2.2-beta6.bin differ
diff --git a/software/NRG_itho_wifi/04_JS_UI.ino b/software/NRG_itho_wifi/04_JS_UI.ino
index 3ad57ff4..25d6104e 100644
--- a/software/NRG_itho_wifi/04_JS_UI.ino
+++ b/software/NRG_itho_wifi/04_JS_UI.ino
@@ -156,13 +156,13 @@ function startWebsock(websocketServerLocation){
else if (f.rflog) {
let x = f.rflog;
$('#rflog_outer').removeClass('hidden');
- $('#rflog').append(x.message + '
');
- $('#rflog').scrollTop($('#rflog').height());
+ var d = new Date();
+ $('#rflog').prepend(d.toISOString() + ': ' + x.message + '
');
}
else if (f.ota) {
let x = f.ota;
$('#updateprg').html('Firmware update progress: ' + x.percent + '%');
- moveBar(x.percent, "updateBar");
+ moveBar(x.percent, "updateBar");
}
};
websock.onopen = function(a) {