Merge branch 'master' into navigationd-init

This commit is contained in:
James Vecellio-Grant
2025-10-25 21:14:39 -07:00
committed by GitHub
4 changed files with 10 additions and 2 deletions
+3
View File
@@ -1,3 +1,6 @@
sunnypilot Version 2025.002.000 (2025-xx-xx)
========================
sunnypilot Version 2025.001.000 (2025-10-25)
========================
* 🛠️ Major rewrite
+1 -1
View File
@@ -1 +1 @@
#define SUNNYPILOT_VERSION "2025.001.000"
#define SUNNYPILOT_VERSION "2025.002.000"
+1 -1
View File
@@ -116,7 +116,7 @@ class ModelCache:
class ModelFetcher:
"""Handles fetching and caching of model data from remote source"""
MODEL_URL = "https://docs.sunnypilot.ai/driving_models_v7.json"
MODEL_URL = "https://docs.sunnypilot.ai/driving_models_v8.json"
def __init__(self, params: Params):
self.params = params
@@ -1,4 +1,5 @@
import pytest
import platform
import json
import random
import time
@@ -12,6 +13,10 @@ from openpilot.common.transformations.coordinates import ecef2geodetic
from openpilot.system.manager.process_config import managed_processes
if platform.system() == 'Darwin':
pytest.skip("Skipping locationd test on macOS due to unsupported msgq.", allow_module_level=True)
class TestLocationdProc:
LLD_MSGS = ['gpsLocationExternal', 'cameraOdometry', 'carState', 'liveCalibration',
'accelerometer', 'gyroscope', 'magnetometer']