mirror of
https://github.com/halleysfifthinc/AVCLAN-Mockingboard.git
synced 2026-08-06 17:03:17 +00:00
452 lines
15 KiB
C
452 lines
15 KiB
C
/*
|
|
AVCLAN-Mockingboard
|
|
Copyright (C) 2015 Allen Hill <allenofthehills@gmail.com>
|
|
|
|
Portions of the following source code are based on code that is
|
|
copyright (C) 2006 Marcin Slonicki <marcin@softservice.com.pl>
|
|
copyright (C) 2007 Louis Frigon
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <avr/interrupt.h>
|
|
#include <avr/io.h>
|
|
#include <avr/sfr_defs.h>
|
|
#include <avr/xmega.h>
|
|
#include <ctype.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "avclandrv.h"
|
|
#include "com232.h"
|
|
#include "queue.h"
|
|
|
|
const char *const offon[] = {"OFF", "ON"};
|
|
|
|
#define CACHE_SIZE 16
|
|
static_assert((CACHE_SIZE & (CACHE_SIZE - 1)) == 0,
|
|
"CACHE_SIZE must be a power of two (qMask depends on it)");
|
|
|
|
static AVCLAN_frame_t frames[CACHE_SIZE];
|
|
static RFrame_t responses[CACHE_SIZE];
|
|
static uint8_t framesdata[CACHE_SIZE][MAXMSGLEN];
|
|
|
|
static void *cacheSlots[CACHE_SIZE];
|
|
static void *rcacheSlots[CACHE_SIZE];
|
|
static void *incomingSlots[CACHE_SIZE];
|
|
static void *outgoingSlots[CACHE_SIZE];
|
|
|
|
static Queue_t cache, rcache, incoming, outgoing;
|
|
|
|
static volatile bool enqueueStatus = false;
|
|
|
|
void Setup();
|
|
void general_GPIO_init();
|
|
void print_help();
|
|
|
|
static uint8_t return_resp(RFrame_t *resp) {
|
|
uint8_t err;
|
|
AVCLAN_frame_t *out = resp->frame;
|
|
if ((out >= frames) && (out < &frames[CACHE_SIZE]))
|
|
// only return cache-owned frames (e.g. not status, etc)
|
|
err = pushQueue(&cache, out);
|
|
err = pushQueue(&rcache, resp);
|
|
return err;
|
|
}
|
|
|
|
static void push_or_return_resp(RFrame_t *resp) {
|
|
// r_Nothing == don't respond/send; should never be added to outgoing
|
|
if (resp->r != r_Nothing && !pushQueue(&outgoing, resp))
|
|
return;
|
|
|
|
return_resp(resp);
|
|
}
|
|
|
|
static void toggle_flag(bool *flag, const char *msg) {
|
|
*flag = !*flag;
|
|
RS232_Print(msg);
|
|
RS232_Print(offon[*flag]);
|
|
RS232_Print("\n");
|
|
}
|
|
|
|
static void set_flag(bool *flag, bool val, const char *msg) {
|
|
*flag = val;
|
|
RS232_Print(msg);
|
|
RS232_Print(offon[val]);
|
|
RS232_Print("\n");
|
|
}
|
|
|
|
int main() {
|
|
uint8_t hexChars[2];
|
|
uint8_t hexDigit = 0; // current digit being written to hexChars
|
|
|
|
bool readSeq = false;
|
|
bool seqIsUnicast = false;
|
|
bool readBinary = false;
|
|
|
|
bool verbose = true;
|
|
bool printAllFrames = true;
|
|
bool lastPrintAllFrames = true;
|
|
bool printBinary = false;
|
|
bool echoCharacters = true;
|
|
bool muteBus = false;
|
|
|
|
// Binary-mode REPL includes the full wire preamble (broadcast + 2*addr +
|
|
// control + length), so size for the worst case.
|
|
uint8_t data_tmp[MAXMSGLEN + sizeof(AVCLAN_frame_t)];
|
|
uint8_t seqIdx = 0; // current index in data_tmp
|
|
|
|
uint8_t err = 0;
|
|
uint8_t failedStatusReports = 0;
|
|
|
|
for (uint8_t i = 0; i < CACHE_SIZE; ++i) {
|
|
frames[i].control = 0x0f;
|
|
frames[i].data = framesdata[i];
|
|
}
|
|
|
|
constructQueue(&cache, cacheSlots, frames, sizeof(AVCLAN_frame_t), CACHE_SIZE,
|
|
true);
|
|
constructEmptyQueue(&incoming, incomingSlots, CACHE_SIZE);
|
|
|
|
constructQueue(&rcache, rcacheSlots, responses, sizeof(RFrame_t), CACHE_SIZE,
|
|
true);
|
|
constructEmptyQueue(&outgoing, outgoingSlots, CACHE_SIZE);
|
|
|
|
Setup();
|
|
print_help();
|
|
|
|
while (true) {
|
|
|
|
if (!BUS_IS_IDLE) {
|
|
if (AVCLAN_frame_t *msg = popQueue(&cache)) {
|
|
err = AVCLAN_readframe(msg, (log_t){.print = printAllFrames,
|
|
.binary = printBinary,
|
|
.verbose = verbose});
|
|
if (!err)
|
|
err = pushQueue(&incoming, msg);
|
|
|
|
if (err)
|
|
pushQueue(&cache, msg);
|
|
} else {
|
|
RS232_Print("!! Dropping an incoming message; cache is empty !!\n");
|
|
}
|
|
}
|
|
|
|
if (AVCLAN_frame_t *in = peekQueue(&incoming)) {
|
|
if (AVCLAN_frame_t *out = popQueue(&cache)) {
|
|
incrementRead(&incoming); // successful out = pop cache; claim the
|
|
// peeked incoming
|
|
response_t respond = AVCLAN_handleframe(in, out);
|
|
pushQueue(&cache, in); // return in after use
|
|
|
|
if (respond) {
|
|
if (RFrame_t *resp = popQueue(&rcache)) {
|
|
*resp = (RFrame_t){.r = respond, .frame = out};
|
|
push_or_return_resp(resp);
|
|
} else
|
|
pushQueue(&cache, out); // rcache exhausted — don't leak the frame
|
|
} else // no response needed; return to circulation
|
|
pushQueue(&cache, out);
|
|
} else {
|
|
RS232_Print("!! Unable to respond; cache is empty !!\n");
|
|
}
|
|
}
|
|
|
|
if (RFrame_t *resp = popQueue(&outgoing)) {
|
|
AVCLAN_frame_t *out = resp->frame;
|
|
err = AVCLAN_sendframe(
|
|
out, (log_t){.print = printAllFrames, .binary = printBinary});
|
|
if (err || resp->r == r_Handled) {
|
|
if (err && out == AVCLAN_getStatusFrame() &&
|
|
++failedStatusReports > 1) {
|
|
failedStatusReports = 0;
|
|
AVCLAN_stopPlaying(); // Disable periodic updates if e.g. no-one's
|
|
// listening (car was turned off?)
|
|
}
|
|
return_resp(resp);
|
|
} else {
|
|
resp = AVCLAN_statemachine(resp);
|
|
push_or_return_resp(resp);
|
|
}
|
|
} else if (enqueueStatus) {
|
|
AVCLAN_frame_t *status = AVCLAN_getStatusFrame();
|
|
AVCLAN_generateStatus(status, true, dev_STATUS);
|
|
if (RFrame_t *resp = (RFrame_t *)popQueue(&rcache)) {
|
|
*resp = (RFrame_t){.r = r_Handled, .frame = status};
|
|
err = pushQueue(&outgoing, resp);
|
|
if (err) {
|
|
RS232_Print("Outgoing queue full; unable to send status update\n");
|
|
pushQueue(&rcache, resp);
|
|
} else
|
|
enqueueStatus = false; // Only clear if successful
|
|
}
|
|
// no further error handling needed; status isn't part of the cache
|
|
}
|
|
|
|
// Key handler
|
|
if (RS232_RxCharEnd) {
|
|
cli();
|
|
char readkey = RS232_RxCharBuffer[RS232_RxCharBegin++];
|
|
if (RS232_RxCharBegin == RS232_RxCharEnd) // if buffer is consumed
|
|
RS232_RxCharBegin = RS232_RxCharEnd = 0; // reset buffer
|
|
sei();
|
|
switch (readkey) {
|
|
case '?': print_help(); break;
|
|
case 'v': toggle_flag(&verbose, "Verbose errors: "); break;
|
|
case 'l': toggle_flag(&printAllFrames, "Logging: "); break;
|
|
case 'k': toggle_flag(&echoCharacters, "Echo characters: "); break;
|
|
case 'm':
|
|
toggle_flag(&muteBus, "Mute device: ");
|
|
AVCLAN_muteDevice(muteBus);
|
|
break;
|
|
|
|
// X/x isn't a toggle interface because this is used
|
|
// programmatically and is simpler than reading back the toggle
|
|
// state
|
|
case 'X': set_flag(&printBinary, true, "Binary: "); break;
|
|
case 'x': set_flag(&printBinary, false, "Binary: "); break;
|
|
|
|
case 'E': // Beep
|
|
if (AVCLAN_frame_t *out = (AVCLAN_frame_t *)popQueue(&cache)) {
|
|
if (RFrame_t *resp = popQueue(&rcache)) {
|
|
out->is_unicast = true;
|
|
out->controller_addr = DEVICE_ADDR;
|
|
out->peripheral_addr = HU_ADDR;
|
|
{
|
|
const uint8_t beep[] = {0x00, dev_CD_CHANGER, dev_BEEP_SPEAKERS,
|
|
0x60, 0x01};
|
|
out->length = sizeof(beep);
|
|
memcpy(out->data, beep, sizeof(beep));
|
|
}
|
|
*resp = (RFrame_t){.r = r_Handled, .frame = out};
|
|
push_or_return_resp(resp);
|
|
} else
|
|
pushQueue(&cache, out);
|
|
}
|
|
break;
|
|
case 'P':
|
|
if (AVCLAN_frame_t *out = (AVCLAN_frame_t *)popQueue(&cache)) {
|
|
if (RFrame_t *resp = popQueue(&rcache)) {
|
|
out->is_unicast = true;
|
|
out->controller_addr = DEVICE_ADDR;
|
|
out->peripheral_addr = HU_ADDR;
|
|
{
|
|
const uint8_t play[] = {0x00, dev_COMM_CTRL, dev_COMM_v1,
|
|
Ejection, dev_CD_CHANGER, 0x01};
|
|
out->length = sizeof(play);
|
|
memcpy(out->data, play, sizeof(play));
|
|
}
|
|
*resp = (RFrame_t){.r = r_Ejection, .frame = out};
|
|
push_or_return_resp(resp);
|
|
} else
|
|
pushQueue(&cache, out);
|
|
}
|
|
break;
|
|
|
|
#ifndef NDEBUG
|
|
case 'g': AVCLAN_micToggle(); break;
|
|
case 'p':
|
|
RS232_Print("First play/pause begin ... ");
|
|
AVCLAN_micPlayPause();
|
|
while (AVCLAN_isMediaFunctioning()) {}
|
|
RS232_Print("end\nSecond play/pause begin ... ");
|
|
AVCLAN_micPlayPause();
|
|
while (AVCLAN_isMediaFunctioning()) {}
|
|
RS232_Print("end\n");
|
|
break;
|
|
case 's':
|
|
RS232_Print("Skip begin ... ");
|
|
AVCLAN_micSkipForward();
|
|
while (AVCLAN_isMediaFunctioning()) {}
|
|
RS232_Print("end\n");
|
|
break;
|
|
case 'b':
|
|
RS232_Print("Skip back begin ... ");
|
|
AVCLAN_micSkipBackward();
|
|
while (AVCLAN_isMediaFunctioning()) {}
|
|
RS232_Print("end\n");
|
|
break;
|
|
case 'M': AVCLan_Measure(); break;
|
|
#endif
|
|
|
|
case 0x10: // Signals binary sequence incoming
|
|
if (!readSeq && !readBinary) {
|
|
readSeq = readBinary = true;
|
|
seqIdx = 0;
|
|
break;
|
|
} else
|
|
goto DEFAULT; // reading binary and this is a real data byte
|
|
|
|
case 'U': // Send command
|
|
RS232_Print("READ SEQUENCE (U)> \n");
|
|
lastPrintAllFrames = printAllFrames;
|
|
printAllFrames = false;
|
|
readSeq = true;
|
|
seqIdx = hexDigit = 0;
|
|
hexChars[0] = hexChars[1] = 0;
|
|
seqIsUnicast = true;
|
|
break;
|
|
case 'B': // Send broadcast
|
|
RS232_Print("READ SEQUENCE (B)> \n");
|
|
lastPrintAllFrames = printAllFrames;
|
|
printAllFrames = false;
|
|
readSeq = true;
|
|
seqIdx = hexDigit = 0;
|
|
hexChars[0] = hexChars[1] = 0;
|
|
seqIsUnicast = false;
|
|
break;
|
|
case '\n':
|
|
if (readSeq) {
|
|
if (readBinary) {
|
|
if (data_tmp[seqIdx] == 0x17) {
|
|
if (AVCLAN_frame_t *out = (AVCLAN_frame_t *)popQueue(&cache)) {
|
|
if (!AVCLAN_parseframe(data_tmp, --seqIdx, out)) {
|
|
if (RFrame_t *resp = popQueue(&rcache)) {
|
|
*resp = (RFrame_t){.r = r_Handled, .frame = out};
|
|
push_or_return_resp(resp);
|
|
} else
|
|
pushQueue(&cache, out);
|
|
} else
|
|
pushQueue(&cache, out);
|
|
}
|
|
readSeq = readBinary = false;
|
|
} else
|
|
goto DEFAULT; // reading binary and this is a real data byte;
|
|
// fall through to default
|
|
} else {
|
|
if (AVCLAN_frame_t *out = (AVCLAN_frame_t *)popQueue(&cache)) {
|
|
if (RFrame_t *resp = popQueue(&rcache)) {
|
|
out->is_unicast = seqIsUnicast;
|
|
out->controller_addr = DEVICE_ADDR;
|
|
out->peripheral_addr = seqIsUnicast ? HU_ADDR : 0x1FF;
|
|
out->length = seqIdx;
|
|
memcpy(out->data, data_tmp, seqIdx);
|
|
*resp = (RFrame_t){.r = r_Handled, .frame = out};
|
|
push_or_return_resp(resp);
|
|
} else
|
|
pushQueue(&cache, out);
|
|
}
|
|
printAllFrames = lastPrintAllFrames;
|
|
}
|
|
break;
|
|
}
|
|
DEFAULT:
|
|
default:
|
|
if (readSeq) {
|
|
if (readBinary) {
|
|
data_tmp[seqIdx++] = readkey;
|
|
} else {
|
|
hexChars[hexDigit++] = readkey;
|
|
|
|
if (hexDigit == 2) {
|
|
char h, l;
|
|
h = toupper(hexChars[0]);
|
|
h += (h < ':') ? 0xd0 : 0xc9; // digit or letter
|
|
|
|
l = toupper(hexChars[1]);
|
|
l += (l < ':') ? 0xd0 : 0xc9;
|
|
|
|
data_tmp[seqIdx++] = (h << 4) | l;
|
|
hexDigit = hexChars[0] = hexChars[1] = 0;
|
|
}
|
|
if (echoCharacters) {
|
|
RS232_Print("CURRENT SEQUENCE > ");
|
|
for (uint8_t i = 0; i < seqIdx; i++) {
|
|
RS232_PrintHex8(data_tmp[i]);
|
|
RS232_SendByte(' ');
|
|
}
|
|
RS232_Print("\n");
|
|
}
|
|
}
|
|
}
|
|
} // switch (readkey)
|
|
} // if (RS232_RxCharEnd)
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void Setup() {
|
|
|
|
_PROTECTED_WRITE(CLKCTRL.MCLKCTRLB, (CLK_PRESCALE | CLK_PRESCALE_DIV));
|
|
|
|
general_GPIO_init();
|
|
RS232_Init();
|
|
AVCLAN_init();
|
|
|
|
sei();
|
|
}
|
|
|
|
/* Configure pin settings which are not configured by peripherals */
|
|
void general_GPIO_init() {
|
|
// Set pins PC2-3, PB0,3-5 as inputs
|
|
PORTC.DIRCLR = (PIN2_bm | // Unconnected
|
|
PIN3_bm); // CTS
|
|
PORTB.DIRCLR = (PIN0_bm | // Unconnected
|
|
PIN3_bm | // IGN_SENSE
|
|
PIN4_bm | // Unused, but connected to WOC (PC0)
|
|
PIN5_bm); // Unused, but connected to WOD (PC1)
|
|
|
|
// Enable pull-up resistor and disable input buffer (reduces any EM caused
|
|
// pin toggling and saves power) for unused and unconnected pins
|
|
PORTC.PIN2CTRL = PORT_PULLUPEN_bm | PORT_ISC_INPUT_DISABLE_gc;
|
|
PORTB.PIN0CTRL = PORT_PULLUPEN_bm | PORT_ISC_INPUT_DISABLE_gc;
|
|
|
|
// TODO: Remove once IGN_SENSE hardware is fixed
|
|
PORTB.DIRSET = PIN3_bm;
|
|
PORTB.OUTSET = PIN3_bm;
|
|
|
|
// Output only pins: PA3-5, PB1-2,4-5; PC0-1
|
|
// TODO: TxD (PA1), RTS (PA3) is output only, test if RxD needs the input
|
|
// buffer or if the UART peripheral bypasses it
|
|
PORTA.PIN3CTRL = PORT_ISC_INPUT_DISABLE_gc; // RTS
|
|
PORTA.PIN4CTRL = PORT_ISC_INPUT_DISABLE_gc; // WOA
|
|
PORTA.PIN5CTRL = PORT_ISC_INPUT_DISABLE_gc; // WOB
|
|
PORTB.PIN1CTRL = PORT_ISC_INPUT_DISABLE_gc; // MIC_CONTROL
|
|
PORTB.PIN4CTRL = PORT_ISC_INPUT_DISABLE_gc; // non-driving WOC
|
|
PORTB.PIN5CTRL = PORT_ISC_INPUT_DISABLE_gc; // non-driving WOD
|
|
PORTC.PIN0CTRL = PORT_ISC_INPUT_DISABLE_gc; // WOC
|
|
PORTC.PIN1CTRL = PORT_ISC_INPUT_DISABLE_gc; // WOD
|
|
}
|
|
|
|
void print_help() {
|
|
RS232_Print("AVCLAN Mockingboard v1\n");
|
|
RS232_Print("U - begin reading for unicast message\n"
|
|
"B - begin reading for broadcast message\n"
|
|
"m - Toggle mute for mockingboard bus activity\n"
|
|
"v - Toggle verbose error logging\n"
|
|
"l - Toggle message logging\n"
|
|
"X/x - Turn binary logging ON or OFF, respectively\n"
|
|
"k - Toggle character echo\n"
|
|
"E - Beep\n"
|
|
"P - Play\n"
|
|
#ifndef NDEBUG
|
|
"g - Toggle MIC_CONTROL high/low\n"
|
|
"p - double MIC play/pause pulse\n" // Confirm pulse function and
|
|
// refractory timing
|
|
"s - MIC skip forward\n"
|
|
"b - MIC skip backward\n"
|
|
"M - Measure bit-timing (pulse-widths and periods)\n"
|
|
#endif
|
|
"? - Print this message\n");
|
|
}
|
|
|
|
// Periodic interrupt with a ~1 sec period; only enabled when playing
|
|
ISR(RTC_CNT_vect) {
|
|
AVCLAN_incrementTime();
|
|
enqueueStatus = true;
|
|
RTC.INTFLAGS = RTC_OVF_bm;
|
|
}
|