Home

Awesome

AVCLAN Mockingboard

<img src="./hardware/pcbv1.png" width=500\>

This board adds an auxiliary audio input to the stock head unit of compatible Toyota vehicles using a Microchip ATtiny3216 to emulate a CD changer. The Mockingboard communicates with the head unit on the AVC-LAN bus, Toyota's name for their messaging protocol over the NEC (now Renesas) IEBus.

Project status:

The circuit board and firmware is functional and can send/recieve messages on the AVC-LAN bus. The AVC-LAN driver is incomplete and doesn't finish the initial "handshake"/advertisement, but manually sending the CD changer activation command ('p' on the serial "REPL") is effective in enabling the CD changer audio inputs (this state persists between car trips, although loss of power (dead/disconnected battery) will reset the head unit). The semi-working state of the project is functional enough for me to live with for now; although I plan on eventually coming back to this.

(Upcoming) Features

Roadmap

Helpful links/prior art:

Current Issues:

Hardware

I ordered the boards partially assembled from JLCPCB (to keep costs down, I ordered and soldered some non-standard/stocked parts myself.)

The non-populated/assembled BOM is:

Mouser #:Mfr. #:Desc.:Order Qty.Unit Price (USD)
579-ATTINY3216-SNRATTINY3216-SNR8-bit Microcontrollers - MCU 8-bit Microcontrollers - MCU 20MHz, 32KB, SOIC20, Ind 105C, Green, T&R1$1.27
523-L717SDE09PA4CH4L717SDE09PA4CH4FD-Sub Standard Connectors D-Sub Standard Connectors D SUB R/A1$1.98
490-SJ-43514SJ-43514Phone Connectors Phone Connectors audio jack, 3.5 mm, rt, 4 conductor, through hole, 0 switches1$1.35
667-ERZ-V20D220ERZ-V20D220Varistors Varistors 22V 2000A ZNR SUR ABSORBER 20MM1$1.24
538-22-28-809322-28-8093Headers & Wire Housings Headers & Wire Housings 2.54MM BREAKAWAY RA 9 CKT Gold2$0.76
865-XC6701D502JR-GXC6701D502JR-GLDO Voltage Regulators LDO Voltage Regulators 28V High Speed Voltage Regulator1$1.36
563-EXN-23350-BKEXN-23350-BKEnclosures, Boxes, & Cases Enclosures, Boxes, & Cases Extruded Aluminum Enclosure Black (1.4 X 2.7 X 1.9 In)1$14.40

An earlier version of the board* lacked cutouts in the corners to fit the ends of the intended housing, so I haven't used the listed enclosure (yet).

*Only version of the board I have ordered so far.

Cable harness

I ordered a cable harness from Amazon to acquire the head-unit side connector. I then cut the male end off a DB9 cable and connected the wires according to the following cable harness diagram:

cable diagram

Firmware

Building

With VS Code:

  1. Install VS Code and Docker
    • Required extensions: Dev Containers
  2. Open repo in VS code and wait for notification asking to re-open in dev container.
    • Wait for container to build and extensions to install
  3. Select CMake build configuration
  4. Start developing!

Natively/without VS Code Dev Containers

  1. Install avr-gcc >= v8.3, binutils >= v2.39, cmake >= v3.24
  2. Configure cmake in repo with cmake -B build
    • Trigger builds with cmake --build build
  3. Start developing!

Flashing

The CMake target upload_mockingboard uses the AVRDude utility using the "serialupdi" programmer type. I use a USB => Serial converter with the Rx and Tx lines connected, using one of the options described by SpenceKonde here.

Protocol reverse-engineering

The "scripts/packet-analysis" folder contains a Wireshark Lua plugin that defines a dissector for IEBUS and AVC-LAN messages. Also contained in that folder is a Julia script that pipes packets from the Mockingboard serial into Wireshark for live capturing and inspection.

License

The firmware for this project is licensed under the GNU GPLv3, and the hardware is licensed under the Solderpad Hardware License v2.1, a wraparound license to the Apache License 2.0.