mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-07 20:33:28 +00:00
update
This commit is contained in:
parent
4d8909a348
commit
24c59ffd9a
1 changed files with 5 additions and 1 deletions
|
@ -714,7 +714,11 @@
|
|||
const _tx = _channel.tx && _channel.rx ? Math.abs(parseInt((_channel.tx * 100000).toFixed(0)) - parseInt((_channel.rx * 100000).toFixed(0))) : NaN
|
||||
_channelhex += !Number.isNaN(_tx) ? _tx.toString(16).padStart(8, '0') : '00000000'
|
||||
_channelhex += parseInt((_channel.rx * 100000).toFixed(0)).toString(16).padStart(8, '0')
|
||||
|
||||
|
||||
if(_channelhex.indexOf('-1') != -1){
|
||||
_channelhex = _channelhex.replace(/^(.{10})(.{6})(.*)$/, '$1000000$3');
|
||||
}
|
||||
|
||||
console.log(_channelhex)
|
||||
rawEEPROM.set(hexReverseStringToUint8Array(_channelhex), i)
|
||||
|
||||
|
|
Loading…
Reference in a new issue