drivers: gnss: emul: increase GNSS_EMUL_MIN_FIX_INTERVAL_MS

Make the GNSS emul driver less capable w.r.t fix interval so that we can
exercise more error paths if e.g. user requests a fix interval of 100ms.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
Benjamin Cabé 2025-06-13 10:45:19 +02:00 committed by Henrik Brix Andersen
commit 64446d2f67

View file

@ -22,7 +22,7 @@ LOG_MODULE_REGISTER(gnss_emul, CONFIG_GNSS_LOG_LEVEL);
#define DT_DRV_COMPAT zephyr_gnss_emul
#define GNSS_EMUL_DEFAULT_FIX_INTERVAL_MS 1000
#define GNSS_EMUL_MIN_FIX_INTERVAL_MS 100
#define GNSS_EMUL_MIN_FIX_INTERVAL_MS 200
#define GNSS_EMUL_FIX_ACQUIRE_TIME_MS 5000
#define GNSS_EMUL_DEFAULT_NAV_MODE GNSS_NAVIGATION_MODE_BALANCED_DYNAMICS
#define GNSS_EMUL_SUPPORTED_SYSTEMS_MASK 0xFF