Post #1905327
2026-05-03 05:11 UTC
@Oleksii@social.linux.pizza Got some good news, just managed to fix the startup issue. So compiling from source with the latest master should work on any compositor now.
Charon talks to ModemManager directly, bypassing geoclue (which frequently messes with GPS settings). This allows you to setup polling rate yourself. Charon will follow the polling rate set in the modem.
Replies (1)
-
@UndeadLeech@fosstodon.org 2026-05-03 05:12
@Oleksii@social.linux.pizza You need to enable either raw or nmea GPS mode (both are supported, but FP5 only does nmea for example): ``` mmcli -m any --location-enable-gps-nmea mmcli -m any --location-enable-gps-raw ``` Then you can set the polling rate to whatever you want: ``` # This sets polling rate to every 10s. mmcli -m any --location-set-gps-refresh-rate 10 ```