diff --git a/README.md b/README.md index 2a39a27..0bb167a 100644 --- a/README.md +++ b/README.md @@ -249,6 +249,8 @@ When enabled, this should fix INAV delta update related issues as well as provid To enable: +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. + Use the CLI button in the configurator on your VTx side after updating to 0.7.0. ``` @@ -258,9 +260,7 @@ package-config apply msp-osd If the apply hangs, just reboot your VTx. -Note that INAV HD mode sync issues may still be present, use the usual workarounds (enter menu or switch screens) to fix these. - -Compressed mode may also be valuable for other FCs, as it should make the overall link much more reliable and stable. +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. ### Generate your own Font from an analog font (advanced) @@ -303,8 +303,8 @@ To apply options, type `package-config apply msp-osd`. |`show_au_data`| enables AU data overlay on the right | true/false | false | |`show_waiting`| enables or disables MSP WAITING message | true/false | true | |`hide_diagnostics`| hide the diagnostic information in the bottom right | true/false | false | -|`rec_enabled`| enable OSD recording to .msp files alongside video | true/false | false | -|`rec_pb_enabled`| enable OSD playback if .msp file is stored alongside video | true/false | false | +|`rec_enabled`| enable OSD recording to .msp files alongside video | true/false | true | +|`rec_pb_enabled`| enable OSD playback if .msp file is stored alongside video | true/false | true | So for example, to disable the WAITING message: @@ -319,7 +319,7 @@ Next, Type `package-config apply msp-osd` and press ENTER. | Option | Description | Type | Default| | ------ | ----------- | ---- |--------| -|`compress_osd`| Enable [compressed transmission](#Compressed-Transmission) - see information above | true/false| false | +|`compress_osd`| Enable [compressed transmission](#Compressed-Transmission) - see information above | true/false| true | | `osd_update_rate_hz` | Configure the update rate in hz for the OSD when using compressed transmission | integer | 10 | | `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 | | `fast_serial` | Change serial baud rate to 240400 baud, which can improve OSD performance in some situations | true/false | false | diff --git a/config/airunit/config.json b/config/airunit/config.json index c2f6f34..3b0d5f8 100644 --- a/config/airunit/config.json +++ b/config/airunit/config.json @@ -2,6 +2,6 @@ "fast_serial": false, "cache_serial": false, "osd_update_rate_hz": 10, - "compress_osd": false, + "compress_osd": true, "disable_betaflight_hd": false } \ No newline at end of file diff --git a/config/goggles/config.json b/config/goggles/config.json index 6bb3e64..5529de8 100644 --- a/config/goggles/config.json +++ b/config/goggles/config.json @@ -9,6 +9,6 @@ "fakehd_layout_debug": false, "fakehd_columns": "S", "fakehd_rows": "WWWWWWCCWWWWWWWD", - "rec_enabled": false, - "rec_pb_enabled": false + "rec_enabled": true, + "rec_pb_enabled": true } diff --git a/ipk/airunit/control/control b/ipk/airunit/control/control index e07ceca..2c71c27 100644 --- a/ipk/airunit/control/control +++ b/ipk/airunit/control/control @@ -1,5 +1,5 @@ Package: msp-osd -Version: 0.9.1 +Version: 0.10.0 Maintainer: bri3d Description: MSP OSD service for the DJI HD FPV airunit. Architecture: pigeon-airside diff --git a/ipk/goggle/control/control b/ipk/goggle/control/control index 14f57c5..ce129de 100644 --- a/ipk/goggle/control/control +++ b/ipk/goggle/control/control @@ -1,5 +1,5 @@ Package: msp-osd -Version: 0.9.1 +Version: 0.10.0 Maintainer: bri3d Description: MSP OSD service for the DJI HD FPV goggles. Architecture: pigeon-glasses