1
0
Fork 0
mirror of https://github.com/silenty4ng/k5web synced 2025-04-06 16:47:24 +00:00
This commit is contained in:
Silent YANG 2024-01-31 22:42:19 +08:00
parent 239a5aff04
commit a78e16644f
18 changed files with 315 additions and 133 deletions

View file

@ -11,7 +11,13 @@
import GlobalSetting from '@/components/global-setting/index.vue';
import useLocale from '@/hooks/locale';
import Aegis from 'aegis-web-sdk';
import { encodingIndexes } from "@zxing/text-encoding/es2015/encoding-indexes";
import { TextEncoder, TextDecoder } from "@zxing/text-encoding";
window.TextEncodingIndexes = { encodingIndexes: encodingIndexes };
window.TextEncoder = TextEncoder;
window.TextDecoder = TextDecoder;
//
if(location.hostname == 'k5.vicicode.com'){
const aegis = new Aegis({

View file

@ -131,10 +131,12 @@
const toggleDrawerMenu = inject('toggleDrawerMenu') as () => void;
const configuration_list : any = {
"LOSEHU.*P.*K" : "silenty4ngk.json",
"LOSEHU.*P.*" : "silenty4ng.json",
"LOSEHU.*K" : "todo.json",
"LOSEHU.*" : "todo.json"
"LOSEHU.*P.*K" : "ltsk.json",
"LOSEHU.*P.*" : "lts.json",
"LOSEHU11[8-9].*H" : "losehu118h.json",
"LOSEHU11[8-9].*K" : "losehu118k.json",
"LOSEHU11[8-9].*" : "losehu118.json",
".*" : "todo.json"
}
const connectIt = async () => {
@ -157,14 +159,23 @@
let _configuration = null;
const version = await eeprom_init(_connect);
const config = {
"name": "TODO",
"uart": "official",
"charset": "official",
"K": false,
"H": false
}
Object.keys(configuration_list).some(e=>{
const _re = new RegExp(e);
if(_re.test(version)){
_configuration = driversList[configuration_list[e]];
_configuration = Object.assign(config, driversList[configuration_list[e]]);
return true
}
})
console.log(_configuration);
appStore.updateSettings({ connectState: true, connectPort: _connect, firmwareVersion: version, configuration: _configuration });
}else{
disconnect(appStore.connectPort);

View file

@ -0,0 +1,5 @@
{
"name": "LoseHu 118 +",
"uart": "official",
"charset": "official"
}

View file

@ -0,0 +1,6 @@
{
"name": "LoseHu 118 + 2Mbit 扩容版",
"uart": "losehu",
"charset": "gb2312",
"H": true
}

View file

@ -0,0 +1,6 @@
{
"name": "LoseHu 118 + 扩容版",
"uart": "losehu",
"charset": "gb2312",
"K": true
}

5
src/drivers/lts.json Normal file
View file

@ -0,0 +1,5 @@
{
"name": "LoseHu Patch LTSBD8DFN",
"uart": "official",
"charset": "official"
}

6
src/drivers/ltsk.json Normal file
View file

@ -0,0 +1,6 @@
{
"name": "LoseHu Patch LTSBD8DFN扩容版",
"uart": "losehu",
"charset": "losehu",
"K": true
}

View file

@ -1,3 +0,0 @@
{
"name": "LoseHu PatchBD8DFN"
}

View file

@ -1,3 +0,0 @@
{
"name": "LoseHu PatchBD8DFN扩容版"
}

View file

@ -1,3 +1,3 @@
{
"name": "TODO"
"name": "Official"
}

File diff suppressed because one or more lines are too long

View file

@ -6,11 +6,13 @@
</a-typography-title>
</a-col>
<a-divider class="panel-border" />
<a-card v-show="appStore.connectState" :style="{ width: '360px', marginTop: '2em', marginBottom: '2em' }" title="手台信息">
当前固件版本{{ appStore.firmwareVersion }} <br />
匹配写频配置{{ appStore.configuration?.name }} <br />
存储大小{{ state.eepromSize }} <a-button size="mini" type="primary" @click="checkEeprom">检测</a-button>
</a-card>
<a-space>
<a-card v-show="appStore.connectState" :style="{ marginTop: '2em', marginBottom: '2em' }" title="手台信息">
当前固件版本{{ appStore.firmwareVersion }} <br />
匹配写频配置{{ appStore.configuration?.name }} <br />
存储大小{{ state.eepromSize }} <a-button size="mini" type="primary" @click="checkEeprom">检测</a-button>
</a-card>
</a-space>
</a-col>
</template>
@ -25,6 +27,7 @@
})
const checkEeprom = async () => {
alert('TODO');
}
</script>

View file

@ -195,7 +195,7 @@ const backupRange = async (start: any, end: any, name: any = new Date() + '_back
await eeprom_init(appStore.connectPort);
let rawEEPROM = new Uint8Array(end - start);
for (let i = start; i < end; i += 0x80) {
const data = await eeprom_read(appStore.connectPort, i);
const data = await eeprom_read(appStore.connectPort, i, 0x80, appStore.configuration?.uart);
rawEEPROM.set(data, i - start);
}
const blob = new Blob([rawEEPROM], { type: 'application/octet-stream' });
@ -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));
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
}
await eeprom_reboot(appStore.connectPort);
}

View file

@ -56,7 +56,7 @@ const backupRange = async (start: any, end: any, name: any = new Date() + '_back
await eeprom_init(appStore.connectPort);
let rawEEPROM = new Uint8Array(end - start);
for (let i = start; i < end; i += 0x80) {
const data = await eeprom_read(appStore.connectPort, i);
const data = await eeprom_read(appStore.connectPort, i, 0x80, appStore.configuration?.uart);
rawEEPROM.set(data, i - start);
state.status = state.status + "备份进度:" + (((i - start) / rawEEPROM.length) * 100).toFixed(1) + "%<br/>";
nextTick(()=>{
@ -89,7 +89,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));
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
state.status = state.status + "恢复进度:" + (((i - start) / input.files[0].size) * 100).toFixed(1) + "%<br/>";
nextTick(()=>{
const textarea = document?.getElementById('statusArea');
@ -139,6 +139,10 @@ const backup = async() => {
default:
_max = 0x2000;
}
if(appStore.configuration?.uart == "official" && _max >= 0x20000){
alert('该固件不支持备份扩容空间');
return;
}
await backupRange(0, _max)
}

View file

@ -32,7 +32,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));
await eeprom_write(appStore.connectPort, i, uint8Array.slice(i - start, i - start + 0x80), 0x80, appStore.configuration?.uart);
state.status = state.status + "写入进度:" + (((i - start) / uint8Array.length) * 100).toFixed(1) + "%<br/>";
nextTick(()=>{
const textarea = document?.getElementById('statusArea');
@ -45,6 +45,22 @@ const restoreRange = async (start: any = 0, uint8Array: any) => {
const restore = async(type: any = 1) => {
if(appStore.connectState != true){alert('请先连接手台!'); return;};
if(appStore.configuration?.uart == "official"){
alert('固件版本不匹配');
return;
}
if((type == 1 && appStore.configuration?.charset != "losehu") || (type == 1 && appStore.configuration?.K != true)){
alert('固件版本不匹配');
return;
}
if((type == 2 && appStore.configuration?.charset != "gb2312") || (type == 2 && appStore.configuration?.K != true)){
alert('固件版本不匹配');
return;
}
if((type == 3 && appStore.configuration?.charset != "gb2312") || (type == 3 && appStore.configuration?.H != true)){
alert('固件版本不匹配');
return;
}
state.status = state.status + "正在下载字库...<br />"
let fontPacket = undefined
switch(type){

View file

@ -20,7 +20,7 @@
<script lang="ts" setup>
import { reactive, nextTick } from 'vue';
import { useAppStore } from '@/store';
import { eeprom_write, eeprom_reboot, eeprom_init, disconnect, connect, readPacket, sendPacket, unpackVersion, unpack, flash_generateCommand } from '@/utils/serial.js';
import { disconnect, connect, readPacket, sendPacket, unpackVersion, unpack, flash_generateCommand } from '@/utils/serial.js';
const appStore = useAppStore();
@ -88,7 +88,8 @@ const flashIt = async () => {
const textarea = document?.getElementById('statusArea');
if(textarea)textarea.scrollTop = textarea?.scrollHeight;
})
appStore.updateSettings({ connectPort: _connect });
disconnect(_connect);
appStore.updateSettings({ connectState: false });
}
</script>

View file

@ -103,13 +103,25 @@ const selectFile = () => {
const flashIt = async () => {
if(appStore.connectState != true){alert('请先连接手台!'); return;};
if(appStore.configuration?.uart == "official"){
alert('固件版本不匹配');
return;
}
if(state.activeKey == 2 && appStore.configuration?.charset != "gb2312"){
alert('固件版本不匹配');
return;
}
if(state.activeKey == 1 && appStore.configuration?.charset != "losehu"){
alert('固件版本不匹配');
return;
}
state.loading = true
let position = 0x1E350;
if(state.activeKey == 2)position = 0x2080;
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));
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i - position, i - position + 0x80), 0x80, appStore.configuration?.uart);
}
await eeprom_reboot(appStore.connectPort);
state.loading = false

View file

@ -298,12 +298,12 @@
setLoading(true)
let rawEEPROM = new Uint8Array(0x0C80);
for (let i = 0; i < 0x0C80; i += 0x80) {
const _data = await eeprom_read(appStore.connectPort, i)
const _data = await eeprom_read(appStore.connectPort, i, 0x80, appStore.configuration?.uart)
rawEEPROM.set(_data, i)
}
let rawEEPROM3 = new Uint8Array(0x0C80);
for (let i = 0x0F50; i < 0x1BD0; i += 0x80) {
const _data = await eeprom_read(appStore.connectPort, i, 0x80)
const _data = await eeprom_read(appStore.connectPort, i, 0x80, appStore.configuration?.uart)
rawEEPROM3.set(_data, i - 0x0F50)
}
let x = 0;
@ -347,7 +347,7 @@
_channelData.pttid = state.pttidOption[(_channelData.pttid_dtmf >> 1) - 1]
_channelData.dtmf = _channelData.pttid_dtmf >> 0 & 0x01 ? true : false
_channelData.mode = parseInt(_channel.substr(8, 1), 16).toString()
_channelData.name = uint8ArrayToString(rawEEPROM3.subarray(i, i + 0x10))
_channelData.name = uint8ArrayToString(rawEEPROM3.subarray(i, i + 0x10), appStore.configuration?.charset)
}
_renderData.push(_channelData)
x += 1;
@ -423,7 +423,7 @@
rawEEPROM2.set([0xC5], i >> 4)
const mergedArray = new Uint8Array(0x10);
mergedArray.set(stringToUint8Array(_channel.name).subarray(0, 0x10), 0);
mergedArray.set(stringToUint8Array(_channel.name, appStore.configuration?.charset).subarray(0, 0x10), 0);
rawEEPROM3.set(mergedArray, i)
}else{
rawEEPROM.set(hexReverseStringToUint8Array("ffffffffffffffffffffffffffffffff"), i)
@ -433,11 +433,11 @@
i += 0x10
})
for (let i = 0; i < 0x0C80; i += 0x80) {
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i, i + 0x80));
await eeprom_write(appStore.connectPort, i, rawEEPROM.slice(i, i + 0x80), 0x80, appStore.configuration?.uart);
}
await eeprom_write(appStore.connectPort, 0x0D60, rawEEPROM2, 0x0C8);
for (let i = 0x0F50; i < 0x1BD0; i += 0x80) {
await eeprom_write(appStore.connectPort, i, rawEEPROM3.slice(i - 0x0F50, i - 0x0F50 + 0x80));
await eeprom_write(appStore.connectPort, i, rawEEPROM3.slice(i - 0x0F50, i - 0x0F50 + 0x80), 0x80, appStore.configuration?.uart);
}
await eeprom_reboot(appStore.connectPort);
setLoading(false)