Wykrywanie czasu GNSS

Od Androida 12 Android może opcjonalnie używać interfejsu Globalny System Nawigacji Satelitarnej (GNSS) do sugerowania czasów systemu Unix time_detector. Ta funkcja nie jest domyślnie włączona w AOSP.

Gdy wykrywanie czasu GNSS jest włączone, funkcja gnss_time_update_service pasywnie słucha aktualizacji lokalizacji ze źródeł GNSS i przesyła sugestie GNSS do usługę time_detector. Usługa time_detector określa następnie, czy żeby zaktualizować zegar systemowy zgodnie z sugestią.

Wpływ na zużycie energii

Urządzenie AOSP gnss_time_update_service pasywnie nasłuchuje aktualizacji lokalizacji. Ten oznacza, że nigdy nie włącza się GPS ani nie zużywa dodatkowej energii. Ten oznacza to również, że jeśli inna aplikacja lub usługa w systemie nie jest aktywnie prosi o aktualizację lokalizacji, gnss_time_update_service nie pozna lokalizacji aktualizować i proponować czas GNSS.

Implementacja

Aby włączyć wykrywanie czasu GNSS, producenci urządzeń muszą jawnie włączyć funkcję gnss_time_update_service na serwerze systemowym.

Zarówno config_enableGnssTimeUpdateService, jak i config_autoTimeSourcesPriority wartości w kolumnie core/res/res/values/config.xml Aby włączyć tę funkcję, należy zaktualizować plik. Ustaw wartość dla config_enableGnssTimeUpdateService do: true i dodaj: gnss do listy produktów za config_autoTimeSourcesPriority. Pozycja elementu gnss w priorytecie określa priorytet nadany sugestie GNSS w odniesieniu do tych z innych źródeł.

Poniżej znajdziesz przykładowy plik core/res/res/values/config.xml, w którym GNSS wykrywanie czasu jest włączone, a gnss jest na trzecim miejscu na liście priorytetów po network i telephony.

<!-- Specifies priority of automatic time sources. Suggestions from higher entries in the list
         take precedence over lower ones.
         See com.android.server.timedetector.TimeDetectorStrategy for available sources. -->
    <string-array name="config_autoTimeSourcesPriority">
        <item>network</item>
        <item>telephony</item>
        <item>gnss</item>
    </string-array>

    <!-- Enables the GnssTimeUpdate service. This is the global switch for enabling Gnss time based
         suggestions to TimeDetector service. See also config_autoTimeSourcesPriority. -->
    <bool name="config_enableGnssTimeUpdateService">true</bool>

Debugowanie i testowanie

Aby przetestować wykrywanie czasu GNSS, możesz użyć poleceń adb shell cmd location. Użyj tych poleceń, aby dodać testowych dostawców lokalizacji, w których możesz określić lokalizacji i powiązanego czasu GNSS. gnss_time_update_service słucha informacje o lokalizacji są aktualizowane i okresowo pojawiają się sugestie.

Oto przykłady poleceń adb shell cmd location:

# Enable Master Location Switch in the foreground user (usually user 10 on automotive). If you just flashed, this can be done through setup wizard.
adb shell cmd location set-location-enabled true --user 10

# Add GPS test provider (This usually fails the first time. Throws a SecurityException with "android from <SOME_UID> not allowed to perform MOCK_LOCATION".)
adb shell cmd location providers add-test-provider gps

# Enable mock location permissions for previous UID
adb shell appops set UID_PRINTED_IN_PREVIOUS_ERROR android:mock_location allow

# Add GPS test provider (Should work with no errors.)
adb shell cmd location providers add-test-provider gps

# Enable GPS test provider
adb shell cmd location providers set-test-provider-enabled gps true

# Set location with time (Time can't be lower than the limit set by the lower bound.)
adb shell cmd location providers set-test-provider-location gps --location LATITUDE,LONGITUDE --time TIME