1
0
mirror of https://github.com/halleysfifthinc/Toyota-AVC-LAN synced 2025-06-09 17:06:26 +00:00

Annotate cases

This commit is contained in:
Allen Hill 2023-09-03 18:17:25 -04:00
parent 230709a103
commit f13ccffa8d

View File

@ -93,7 +93,7 @@ int main() {
RS232_RxCharBegin = RS232_RxCharEnd = 0; // reset Buffer RS232_RxCharBegin = RS232_RxCharEnd = 0; // reset Buffer
sei(); sei();
switch (readkey) { switch (readkey) {
case 'S': case 'S': // Read sequence
printAllFrames = 0; printAllFrames = 0;
RS232_Print("READ SEQUENCE > \n"); RS232_Print("READ SEQUENCE > \n");
readSeq = 1; readSeq = 1;
@ -101,14 +101,14 @@ int main() {
s_dig = 0; s_dig = 0;
s_c[0] = s_c[1] = 0; s_c[0] = s_c[1] = 0;
break; break;
case 'W': case 'W': // Send command
printAllFrames = 1; printAllFrames = 1;
readSeq = 0; readSeq = 0;
msg.broadcast = UNICAST; msg.broadcast = UNICAST;
msg.length = s_len; msg.length = s_len;
AVCLAN_sendframe(&msg); AVCLAN_sendframe(&msg);
break; break;
case 'Q': case 'Q': // Send broadcast
printAllFrames = 1; printAllFrames = 1;
readSeq = 0; readSeq = 0;
msg.broadcast = BROADCAST; msg.broadcast = BROADCAST;
@ -117,17 +117,17 @@ int main() {
AVCLAN_sendframe(&msg); AVCLAN_sendframe(&msg);
msg.peripheral_addr = HU_ID; msg.peripheral_addr = HU_ID;
break; break;
case 'R': case 'R': // Register and wait for a response
RS232_Print("REGIST:\n"); RS232_Print("REGIST:\n");
AVCLan_Register(); AVCLan_Register();
TCB1.CNT = 0; TCB1.CNT = 0;
while (TCB1.CNT < 540) {} while (TCB1.CNT < 540) {}
CHECK_AVC_LINE; CHECK_AVC_LINE;
break; break;
case 'r': case 'r': // Register into the abyss
AVCLan_Register(); AVCLan_Register();
break; break;
case 'l': case 'l': // Print received messages
RS232_Print("Log OFF\n"); RS232_Print("Log OFF\n");
printAllFrames = 0; printAllFrames = 0;
break; break;
@ -135,7 +135,7 @@ int main() {
RS232_Print("Log ON\n"); RS232_Print("Log ON\n");
printAllFrames = 1; printAllFrames = 1;
break; break;
case 'k': case 'k': // Echo input
RS232_Print("str OFF\n"); RS232_Print("str OFF\n");
echoCharacters = 0; echoCharacters = 0;
break; break;
@ -143,7 +143,7 @@ int main() {
RS232_Print("str ON\n"); RS232_Print("str ON\n");
echoCharacters = 1; echoCharacters = 1;
break; break;
case 'B': case 'B': // Beep
data_tmp[0] = 0x00; data_tmp[0] = 0x00;
data_tmp[1] = 0x5E; data_tmp[1] = 0x5E;
data_tmp[2] = 0x29; data_tmp[2] = 0x29;