Финальные fw для релиза, требуются окончательные тесты

This commit is contained in:
pvvx 2024-01-31 16:50:16 +03:00
parent 3c2c089e35
commit e4f738e8ad
15 changed files with 11668 additions and 11659 deletions

File diff suppressed because it is too large Load diff

3052
bin/BOOT_BTH01_v09.hex Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

3121
bin/BOOT_TH05_v09.hex Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

3049
bin/BOOT_THB2_v09.hex Normal file

File diff suppressed because it is too large Load diff

Binary file not shown.

BIN
bin/BTH01_v09.bin Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/TH05_v09.bin Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/THB2_v09.bin Normal file

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -137,7 +137,6 @@
| SERVICE_SCREEN \
| SERVICE_THS \
| SERVICE_KEY \
| SERVICE_HISTORY \
)
#else
#define DEV_SERVICES (OTA_TYPE \

View file

@ -878,17 +878,13 @@ function updateBegin() {
function sendLastOTA() {
otaCharacteristic.readValue().then(value => {
if(value.byteLength >= 1 && value.getUint8(0) == 0xff) {
let s = "Программирование завершено за " + (new Date().getTime() - startTime) / 1000 + " секунды";
showProgress(s);
addLog(s);
/* Сброс - отключен для теста
var data = "02ff";
return otaCharSend(data).then(_ => {
addLog("Программирование завершено за " + (new Date().getTime() - startTime) / 1000 + " секунды");
return otaCharSend("02ff").then(_ => {
let s = "Программирование завершено за " + (new Date().getTime() - startTime) / 1000 + " секунды";
showProgress(s);
addLog(s);
}).catch(function(err) {
updateFail(err);
updateFail("Ошибка передачи команды перезагрузки после OTA");
});
*/
} else
showError("Ошибка ("+value.getUint8(0)+") на передаче блока "+blockNr+" OTA: "+s);
}).catch(function(err) { updateFail(err); });