mirror of
https://github.com/silenty4ng/k5web
synced 2025-04-06 16:47:24 +00:00
update
This commit is contained in:
parent
f7fbcfefef
commit
faa37ce915
4 changed files with 4 additions and 4 deletions
|
@ -213,7 +213,7 @@ const backupRange = async (start: any, end: any, name: any = new Date() + '_back
|
|||
const restoreRange = async (start: any = 0, uint8Array: any) => {
|
||||
await eeprom_init(appStore.connectPort);
|
||||
for (let i = start; i < uint8Array.length + start; i += 0x80) {
|
||||
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
|
||||
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), uint8Array.slice(i - start, i - start + 0x80).length, appStore.configuration?.uart);
|
||||
}
|
||||
await eeprom_reboot(appStore.connectPort);
|
||||
}
|
||||
|
|
|
@ -155,7 +155,7 @@ const restoreRange = async (start: any = 0) => {
|
|||
const blob = new Blob([input.files[0]], {type: 'application/octet-stream' });
|
||||
const rawEEPROM = new Uint8Array(await blob.arrayBuffer());
|
||||
for (let i = start; i < input.files[0].size + start; i += 0x80) {
|
||||
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
|
||||
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - start, i - start + 0x80), rawEEPROM.slice(i - start, i - start + 0x80).length, appStore.configuration?.uart);
|
||||
state.status = state.status + "恢复进度:" + (((i - start) / input.files[0].size) * 100).toFixed(1) + "%<br/>";
|
||||
nextTick(()=>{
|
||||
const textarea = document?.getElementById('statusArea');
|
||||
|
|
|
@ -65,7 +65,7 @@ const state = reactive({
|
|||
const restoreRange = async (start: any = 0, uint8Array: any) => {
|
||||
await eeprom_init(appStore.connectPort);
|
||||
for (let i = start; i < uint8Array.length + start; i += 0x80) {
|
||||
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
|
||||
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), uint8Array.slice(i - start, i - start + 0x80).length, appStore.configuration?.uart);
|
||||
state.status = state.status + "写入进度:" + (((i - start) / uint8Array.length) * 100).toFixed(1) + "%<br/>";
|
||||
nextTick(()=>{
|
||||
const textarea = document?.getElementById('statusArea');
|
||||
|
|
|
@ -208,7 +208,7 @@ const flashIt = async () => {
|
|||
await eeprom_init(appStore.connectPort);
|
||||
const rawEEPROM = state.binaryFile;
|
||||
for (let i = position; i < rawEEPROM.length + position; i += 0x80) {
|
||||
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - position, i - position + 0x80), 0x80, appStore.configuration?.uart);
|
||||
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - position, i - position + 0x80), rawEEPROM.slice(i - position, i - position + 0x80).length, appStore.configuration?.uart);
|
||||
}
|
||||
await eeprom_reboot(appStore.connectPort);
|
||||
state.loading = false
|
||||
|
|
Loading…
Add table
Reference in a new issue