Skip to content

Commit a8cda07

Browse files
committedFeb 18, 2023
make compress_osd and rec_enabled defaults
1 parent f6cd984 commit a8cda07

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed
 

‎README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,8 @@ When enabled, this should fix INAV delta update related issues as well as provid
249249

250250
To enable:
251251

252+
This option is enabled by default as of 0.10.0, however, if you upgraded from an older version, your configuration file will need to be updated by hand as well.
253+
252254
Use the CLI button in the configurator on your VTx side after updating to 0.7.0.
253255

254256
```
@@ -258,9 +260,7 @@ package-config apply msp-osd
258260

259261
If the apply hangs, just reboot your VTx.
260262

261-
Note that INAV HD mode sync issues may still be present, use the usual workarounds (enter menu or switch screens) to fix these.
262-
263-
Compressed mode may also be valuable for other FCs, as it should make the overall link much more reliable and stable.
263+
If you continue to have issues with especially INAV character corruption, it is likely your serial link is saturated. Check that the "Custom OSD" option in your DJI goggles menus is set to _disabled_ , and also try out the cache_serial option.
264264

265265
### Generate your own Font from an analog font (advanced)
266266

@@ -303,8 +303,8 @@ To apply options, type `package-config apply msp-osd`.
303303
|`show_au_data`| enables AU data overlay on the right | true/false | false |
304304
|`show_waiting`| enables or disables MSP WAITING message | true/false | true |
305305
|`hide_diagnostics`| hide the diagnostic information in the bottom right | true/false | false |
306-
|`rec_enabled`| enable OSD recording to .msp files alongside video | true/false | false |
307-
|`rec_pb_enabled`| enable OSD playback if .msp file is stored alongside video | true/false | false |
306+
|`rec_enabled`| enable OSD recording to .msp files alongside video | true/false | true |
307+
|`rec_pb_enabled`| enable OSD playback if .msp file is stored alongside video | true/false | true |
308308

309309

310310
So for example, to disable the WAITING message:
@@ -319,7 +319,7 @@ Next, Type `package-config apply msp-osd` and press ENTER.
319319

320320
| Option | Description | Type | Default|
321321
| ------ | ----------- | ---- |--------|
322-
|`compress_osd`| Enable [compressed transmission](#Compressed-Transmission) - see information above | true/false| false |
322+
|`compress_osd`| Enable [compressed transmission](#Compressed-Transmission) - see information above | true/false| true |
323323
| `osd_update_rate_hz` | Configure the update rate in hz for the OSD when using compressed transmission | integer | 10 |
324324
| `cache_serial` | Cache unimportant MSP messages for seldom-used features (like PID tuning in the DJI Goggles Settings Menu) to reduce serial pressure | true/false | false |
325325
| `fast_serial` | Change serial baud rate to 240400 baud, which can improve OSD performance in some situations | true/false | false |

‎config/airunit/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"fast_serial": false,
33
"cache_serial": false,
44
"osd_update_rate_hz": 10,
5-
"compress_osd": false,
5+
"compress_osd": true,
66
"disable_betaflight_hd": false
77
}

‎config/goggles/config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"fakehd_layout_debug": false,
1010
"fakehd_columns": "S",
1111
"fakehd_rows": "WWWWWWCCWWWWWWWD",
12-
"rec_enabled": false,
13-
"rec_pb_enabled": false
12+
"rec_enabled": true,
13+
"rec_pb_enabled": true
1414
}

‎ipk/airunit/control/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: msp-osd
2-
Version: 0.9.1
2+
Version: 0.10.0
33
Maintainer: bri3d
44
Description: MSP OSD service for the DJI HD FPV airunit.
55
Architecture: pigeon-airside

‎ipk/goggle/control/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: msp-osd
2-
Version: 0.9.1
2+
Version: 0.10.0
33
Maintainer: bri3d
44
Description: MSP OSD service for the DJI HD FPV goggles.
55
Architecture: pigeon-glasses

0 commit comments

Comments
 (0)
Failed to load comments.