IQ.Pilot Release Commit @ fddcfba

This commit is contained in:
IQ.Lvbs CI [bot]
2026-07-21 13:46:05 -05:00
parent eea1278105
commit b6c0232c12
667 changed files with 3218 additions and 1780 deletions

View File

@@ -1,7 +1,7 @@
import time
from opendbc.car.hyundai.values import HyundaiSafetyFlags
from opendbc.car.structs import CarParams
from iqdbc.car.hyundai.values import HyundaiSafetyFlags
from iqdbc.car.structs import CarParams
from panda import Panda

View File

@@ -2,7 +2,7 @@ import time
import pytest
from flaky import flaky
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda import Panda
from panda.tests.hitl.helpers import time_many_sends

View File

@@ -6,7 +6,7 @@ import threading
from flaky import flaky
from collections import defaultdict
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda.tests.hitl.helpers import time_many_sends, get_random_can_messages, clear_can_buffers
@flaky(max_runs=3, min_passes=1)

View File

@@ -1,6 +1,6 @@
import time
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
def test_safety_nooutput(p):

View File

@@ -2,7 +2,7 @@ import time
import pytest
import itertools
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda import Panda
# TODO: test relay

View File

@@ -1,4 +1,4 @@
import opendbc
import iqdbc
import platform
CC = 'gcc'
@@ -21,7 +21,7 @@ env = Environment(
'-Wfatal-errors',
'-Wno-pointer-to-int-cast',
],
CPPPATH=[".", "../../", "../../board/", opendbc.INCLUDE_PATH],
CPPPATH=[".", "../../", "../../board/", iqdbc.INCLUDE_PATH],
)
if system == "Darwin":
env.PrependENVPath('PATH', '/opt/homebrew/bin')

View File

@@ -15,7 +15,7 @@ void can_tx_comms_resume_spi(void) { };
#include "faults.h"
#include "libc.h"
#include "boards/board_declarations.h"
#include "opendbc/safety/safety.h"
#include "iqdbc/safety/safety.h"
#include "main_definitions.h"
#include "drivers/can_common.h"

View File

@@ -3,7 +3,7 @@ set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
PANDA_DIR=$(realpath $DIR/../../)
OPENDBC_ROOT=$(python3 -c "import opendbc; print(opendbc.INCLUDE_PATH)")
OPENDBC_ROOT=$(python3 -c "import iqdbc; print(iqdbc.INCLUDE_PATH)")
GREEN="\e[1;32m"
YELLOW="\e[1;33m"

View File

@@ -2,7 +2,7 @@
import os
import time
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda import Panda

View File

@@ -1,7 +1,7 @@
import time
import pytest
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda import Panda, PandaJungle
PANDA_SERIAL = "300008001851333037333932"

View File

@@ -2,7 +2,7 @@
import random
import unittest
from opendbc.car.structs import CarParams
from iqdbc.car.structs import CarParams
from panda import DLC_TO_LEN, USBPACKET_MAX_SIZE, pack_can_buffer, unpack_can_buffer
from panda.tests.libpanda import libpanda_py