MIDI over Audio
as_MoA is about transporting MIDI data over audio.
My first attempt was sending MIDI out via Analog audio. This kinda worked, but it was very fragile and difficult.
My second attempt was sending MIDI out via SPDIF. This worked solidly, and is in theory capable of transmitting a lot of data besides a single MIDI stream.
The downside is that the only way to get this to work in a DAW is via a special plugin, one which appears as an instrument (with MIDI input and audio output). But most DAWs don’t really let you send the same kind of data to an "instrument" and to the "MIDI Interface". For example, you’d often be able to send MIDI Sync (Clock) out of the MIDI interface, but can you send it to a plugin?
MIDI Sync is just one small problem, it can be sorta fixed even, the special plugin could generate its own tempo clock (like many plugins with built-in sequencers do already), and send that out.
The bigger problem is doing it the opposite direction: MIDI in to the DAW. This would require a different "special" plugin, one which takes audio input and emits MIDI. Now this is probably much more exotic for some DAWs.
Technical
The idea with as_MoA2 was to just take a MIDI byte (8bits) and encode it as amplitude, perhaps together with a few other bits for other things. Thus a single MIDI byte can be stored into a single audio sample value on one channel.
In theory, at Fs=44100Hz and stereo audio, up to 28 full MIDI output streams can be transmitted this way. At higher sampling rates - things get better.
Hardware
A special hardware box is gonna be needed to take the audio from above and "decode" the MIDI data, or whatever data was actually encoded, and turn it into usable outputs. In my attempt, i used an 8bit XMEGA microcontroller and an SPDIF interface chip.
The XMEGA is too slow and doesn’t have a peripheral to handle the fast audio clock, especially since i wanted this thing to work also at least up to Fs=96kHz, so i used some good old shift-registers to convert the fast serial audio into parallel data and then the XMEGA gets interrupted only once per audio sample, where it takes the data as parallel pin values. It then immediately figures out whether this audio sample contains anything, and if it contains a MIDI Byte - it tosses it to a UART and you get a traditional MIDI output.