mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
2.5 Add Short Turbo to the frequency calculator (#1430)
* add short turbo to calculator * fix cr * update bufs and update js --------- Co-authored-by: rcarteraz <robert.l.carter2@gmail.com>
This commit is contained in:
parent
cbc5267559
commit
3498a6634e
|
@ -22,7 +22,7 @@
|
||||||
"@giscus/react": "^3.0.0",
|
"@giscus/react": "^3.0.0",
|
||||||
"@heroicons/react": "^2.1.1",
|
"@heroicons/react": "^2.1.1",
|
||||||
"@mdx-js/react": "^3.0.1",
|
"@mdx-js/react": "^3.0.1",
|
||||||
"@meshtastic/js": "2.2.23-0",
|
"@meshtastic/js": "2.3.7-5",
|
||||||
"autoprefixer": "^10.4.17",
|
"autoprefixer": "^10.4.17",
|
||||||
"base64-js": "^1.5.1",
|
"base64-js": "^1.5.1",
|
||||||
"clsx": "^2.1.0",
|
"clsx": "^2.1.0",
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.5.3",
|
"@biomejs/biome": "^1.5.3",
|
||||||
"@buf/meshtastic_protobufs.bufbuild_es": "1.7.2-20240216123215-6b07c41c68c9.1",
|
"@buf/meshtastic_protobufs.bufbuild_es": "2.0.0-20240906232734-3da561588c55.2",
|
||||||
"@docusaurus/module-type-aliases": "3.1.1",
|
"@docusaurus/module-type-aliases": "3.1.1",
|
||||||
"@tailwindcss/typography": "^0.5.10",
|
"@tailwindcss/typography": "^0.5.10",
|
||||||
"@tsconfig/docusaurus": "^2.0.2",
|
"@tsconfig/docusaurus": "^2.0.2",
|
||||||
|
|
14796
pnpm-lock.yaml
14796
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -215,6 +215,14 @@ const modemPresets = new Map<
|
||||||
Protobuf.Config.Config_LoRaConfig_ModemPreset,
|
Protobuf.Config.Config_LoRaConfig_ModemPreset,
|
||||||
Modem
|
Modem
|
||||||
>([
|
>([
|
||||||
|
[
|
||||||
|
Protobuf.Config.Config_LoRaConfig_ModemPreset.SHORT_TURBO,
|
||||||
|
{
|
||||||
|
bw: 500,
|
||||||
|
cr: 5,
|
||||||
|
sf: 7,
|
||||||
|
},
|
||||||
|
],
|
||||||
[
|
[
|
||||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.SHORT_FAST,
|
Protobuf.Config.Config_LoRaConfig_ModemPreset.SHORT_FAST,
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue