mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
* PoC of reading sensors via interrupts instead of polling * add Gyro and draft for magn * add more functionality to gpio.cc * change LSM gyro to interrupt * resolve rebase conflict * update BMX accel interrupt impl * add interrupt collector thread to fetch in parallel * change get_event interface to return true on successful read * update BMX gyro interrupt impl * update gpio.h/.cc according to comments * address comments, rename Edgetype enum * Edgetype to EdgeType * update sensor interrupt interface * add error handling, and read fd on trigger * avoid sending empty messages * fix build * use gpiochip * less diff * gpiochip on both edges, but skip falling edge if rising edge is detected * init last_ts with 0 * update sensord testcases * update sensord testsweet * test for pipeline * readd with_process * add null check * move tests update to seperate PR * sensord: improve test coverage (#25683) * update sensord-interrupt testsweet * address review comments * inc stddev threshold * fix format string * add version 0 check again * relax strictness after c3 with bmx tests * relax strictness after tests Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com> * address PR comments * fix typo * remove 4ms limit, and skip first 0.5sec of data * revert disable_interuppt change to destructor * fix and remove timing skip * make gpiochip generic * sensord port * change from sensorEvents to separated events * fix gyro usage * add splitted sensor tests * modify debug script sensor_data_to_hist.py * refactor get_event interface to remove sensorEvent message type * update locationd to non sensorEvent usage * tmp commit * fix replay * fix accelerometer type * fix sensor to hist debug script * update sensord tests to split events * remove rebase artifacts * port test_sensord.py * small clean up * change cereal to sensorEvents-splitup branch * upate sensorEvents in regen * fix route generation for splitted sensor events * regen cleanUp from sensorEvents change * . * remove light and temp from locationd * add generic init delay per sensor * . * update routes * move bmx gyro/accel to its own channel * adopt sensor tests to bmx channel * remove rebase artifacts * fix sensord test * handle bmx not present * add bmx sockets to regen * . * . * code cleanUp * . * address PR comments * address PR comments * address PR comments * lsm clean up * readd sensorEvents * rever regen.py * . * update replay refs * move channels * fix artifact * bump cereal * update refs * fix timing issue Co-authored-by: Bruce Wayne <batman@workstation-eu-intern2.eu.local> Co-authored-by: gast04 <kurt.nistelberger@gmail.com> Co-authored-by: Willem Melching <willem.melching@gmail.com> Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
112 lines
2.9 KiB
Python
Executable File
112 lines
2.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
'''
|
|
printing the gap between interrupts in a histogram to check if the
|
|
frequency is what we expect, the bmx is not interrupt driven for as we
|
|
get interrupts in a 2kHz rate.
|
|
'''
|
|
|
|
import argparse
|
|
import sys
|
|
import numpy as np
|
|
from collections import defaultdict
|
|
|
|
from tools.lib.logreader import LogReader
|
|
from tools.lib.route import Route
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
SRC_BMX = "bmx055"
|
|
SRC_LSM = "lsm6ds3"
|
|
|
|
|
|
def parseEvents(log_reader):
|
|
bmx_data = defaultdict(list)
|
|
lsm_data = defaultdict(list)
|
|
|
|
for m in log_reader:
|
|
if m.which() not in ['accelerometer', 'gyroscope']:
|
|
continue
|
|
|
|
d = getattr(m, m.which()).to_dict()
|
|
|
|
if d["source"] == SRC_BMX and "acceleration" in d:
|
|
bmx_data["accel"].append(d["timestamp"] / 1e9)
|
|
|
|
if d["source"] == SRC_BMX and "gyroUncalibrated" in d:
|
|
bmx_data["gyro"].append(d["timestamp"] / 1e9)
|
|
|
|
if d["source"] == SRC_LSM and "acceleration" in d:
|
|
lsm_data["accel"].append(d["timestamp"] / 1e9)
|
|
|
|
if d["source"] == SRC_LSM and "gyroUncalibrated" in d:
|
|
lsm_data["gyro"].append(d["timestamp"] / 1e9)
|
|
|
|
return bmx_data, lsm_data
|
|
|
|
|
|
def cleanData(data):
|
|
if len(data) == 0:
|
|
return [], []
|
|
|
|
data.sort()
|
|
diffs = np.diff(data)
|
|
return data, diffs
|
|
|
|
|
|
def logAvgValues(data, sensor):
|
|
if len(data) == 0:
|
|
print(f"{sensor}: no data to average")
|
|
return
|
|
|
|
avg = sum(data) / len(data)
|
|
hz = 1 / avg
|
|
print(f"{sensor}: data_points: {len(data)} avg [ns]: {avg} avg [Hz]: {hz}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("route", type=str, help="route name")
|
|
parser.add_argument("segment", type=int, help="segment number")
|
|
args = parser.parse_args()
|
|
|
|
r = Route(args.route)
|
|
logs = r.log_paths()
|
|
|
|
if len(logs) == 0:
|
|
print("NO data routes")
|
|
sys.exit(0)
|
|
|
|
if args.segment >= len(logs):
|
|
print(f"RouteID: {args.segment} out of range, max: {len(logs) -1}")
|
|
sys.exit(0)
|
|
|
|
lr = LogReader(logs[args.segment])
|
|
bmx_data, lsm_data = parseEvents(lr)
|
|
|
|
# sort bmx accel data, and then cal all the diffs, and to a histogram of those
|
|
bmx_accel, bmx_accel_diffs = cleanData(bmx_data["accel"])
|
|
bmx_gyro, bmx_gyro_diffs = cleanData(bmx_data["gyro"])
|
|
lsm_accel, lsm_accel_diffs = cleanData(lsm_data["accel"])
|
|
lsm_gyro, lsm_gyro_diffs = cleanData(lsm_data["gyro"])
|
|
|
|
# get out the averages
|
|
logAvgValues(bmx_accel_diffs, "bmx accel")
|
|
logAvgValues(bmx_gyro_diffs, "bmx gyro ")
|
|
logAvgValues(lsm_accel_diffs, "lsm accel")
|
|
logAvgValues(lsm_gyro_diffs, "lsm gyro ")
|
|
|
|
fig, axs = plt.subplots(1, 2, tight_layout=True)
|
|
axs[0].hist(bmx_accel_diffs, bins=50)
|
|
axs[0].set_title("bmx_accel")
|
|
axs[1].hist(bmx_gyro_diffs, bins=50)
|
|
axs[1].set_title("bmx_gyro")
|
|
|
|
figl, axsl = plt.subplots(1, 2, tight_layout=True)
|
|
axsl[0].hist(lsm_accel_diffs, bins=50)
|
|
axsl[0].set_title("lsm_accel")
|
|
axsl[1].hist(lsm_gyro_diffs, bins=50)
|
|
axsl[1].set_title("lsm_gyro")
|
|
|
|
print("check plot...")
|
|
plt.show()
|