Matthew Kennedy

Results 55 issues of Matthew Kennedy

![image](https://user-images.githubusercontent.com/568254/184734636-0aa689a1-76db-49dc-aadb-5d89934edfc9.png)

Do we expect this test to pass? Currently it fails. ```c++ TEST(CyclicBuffer, Contains) { using tbuffer = cyclic_buffer; tbuffer buf; buf.add(1); EXPECT_TRUE(buf.contains(1)); EXPECT_FALSE(buf.contains(2)); EXPECT_FALSE(buf.contains(3)); EXPECT_FALSE(buf.contains(4)); buf.add(2); buf.add(3); buf.add(4); EXPECT_TRUE(buf.contains(1)); EXPECT_TRUE(buf.contains(2));...

Running on: ![image](https://user-images.githubusercontent.com/568254/206793973-cb882040-97eb-4dcb-b2c4-ca1b4942bdd8.png) I had to run `sudo usermod -a -G plugdev $USER` before running the [other commands here](https://github.com/dorssel/usbipd-win/wiki/WSL-support#udev) in order to have the correct permissions for `/dev/bus/usb` devices. I'm...

documentation

Running under WSL, it shows usage of the WSL VM instead of the host ![image](https://user-images.githubusercontent.com/568254/225498180-b4dc3e6a-d267-44b8-bf2d-849ee6bdc1c7.png)

Right now VREF+ is connected to AVDD, which is derived from the not-very-accurate 3.3v regulator. Adding a proper reference like the REF3033 (available at JLC!) will improve accuracy of analog...

There exists a standard debug header that is: - physically smaller - industry standard (no more eBay pinout mysteries and fake programmers) - keyed (impossible to plug in backwards) Here's...

We currently have no protection against the load dump tests enumerated in ISO 16750-2 (namely the 80-100v positive pulse). This one is pretty easy to resolve - just add a...

The main supply is probably reverse-battery safe, but what about the rest of the hardware aboard the ECU, as wired in a car without a main relay?

add real time clock battery socket so SD logs have timestamps

enhancement

max9926 = exactly 2 * max9924, and is larger pitch so maybe easier to solder

low-priority