auto-sync
This commit is contained in:
parent
c3690e4891
commit
bdec181b62
|
@ -97,7 +97,9 @@ extern persistent_config_container_s persistentState;
|
||||||
|
|
||||||
static efitimems_t previousWriteReportMs = 0;
|
static efitimems_t previousWriteReportMs = 0;
|
||||||
|
|
||||||
static char crcReadBuffer[300];
|
ts_channel_s tsChannel;
|
||||||
|
|
||||||
|
char crcReadBuffer[300];
|
||||||
extern uint8_t crcWriteBuffer[300];
|
extern uint8_t crcWriteBuffer[300];
|
||||||
|
|
||||||
static int ts_serial_ready(void) {
|
static int ts_serial_ready(void) {
|
||||||
|
@ -211,19 +213,19 @@ int getTunerStudioPageSize(int pageIndex) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void handlePageSelectCommand(ts_response_format_e mode, uint16_t pageId) {
|
void handlePageSelectCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t pageId) {
|
||||||
tsState.pageCommandCounter++;
|
tsState.pageCommandCounter++;
|
||||||
|
|
||||||
currentPageId = pageId;
|
currentPageId = pageId;
|
||||||
scheduleMsg(tsLogger, "PAGE %d", currentPageId);
|
scheduleMsg(tsLogger, "PAGE %d", currentPageId);
|
||||||
tsSendResponse(mode, NULL, 0);
|
tsSendResponse(tsChannel, mode, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This command is needed to make the whole transfer a bit faster
|
* This command is needed to make the whole transfer a bit faster
|
||||||
* @note See also handleWriteValueCommand
|
* @note See also handleWriteValueCommand
|
||||||
*/
|
*/
|
||||||
void handleWriteChunkCommand(ts_response_format_e mode, short offset, short count, void *content) {
|
void handleWriteChunkCommand(ts_channel_s *tsChannel, ts_response_format_e mode, short offset, short count, void *content) {
|
||||||
tsState.writeChunkCommandCounter++;
|
tsState.writeChunkCommandCounter++;
|
||||||
|
|
||||||
scheduleMsg(tsLogger, "WRITE CHUNK m=%d p=%d o=%d s=%d", mode, currentPageId, offset, count);
|
scheduleMsg(tsLogger, "WRITE CHUNK m=%d p=%d o=%d s=%d", mode, currentPageId, offset, count);
|
||||||
|
@ -243,7 +245,7 @@ void handleWriteChunkCommand(ts_response_format_e mode, short offset, short coun
|
||||||
uint8_t * addr = (uint8_t *) (getWorkingPageAddr(currentPageId) + offset);
|
uint8_t * addr = (uint8_t *) (getWorkingPageAddr(currentPageId) + offset);
|
||||||
memcpy(addr, content, count);
|
memcpy(addr, content, count);
|
||||||
|
|
||||||
tsSendResponse(mode, NULL, 0);
|
tsSendResponse(tsChannel, mode, NULL, 0);
|
||||||
printTsStats();
|
printTsStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,7 +253,7 @@ void handleWriteChunkCommand(ts_response_format_e mode, short offset, short coun
|
||||||
* 'Write' command receives a single value at a given offset
|
* 'Write' command receives a single value at a given offset
|
||||||
* @note Writing values one by one is pretty slow
|
* @note Writing values one by one is pretty slow
|
||||||
*/
|
*/
|
||||||
void handleWriteValueCommand(ts_response_format_e mode, uint16_t page, uint16_t offset, uint8_t value) {
|
void handleWriteValueCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t page, uint16_t offset, uint8_t value) {
|
||||||
tsState.writeValueCommandCounter++;
|
tsState.writeValueCommandCounter++;
|
||||||
|
|
||||||
currentPageId = page;
|
currentPageId = page;
|
||||||
|
@ -283,11 +285,11 @@ void handleWriteValueCommand(ts_response_format_e mode, uint16_t page, uint16_t
|
||||||
// scheduleMsg(logger, "va=%d", configWorkingCopy.boardConfiguration.idleValvePin);
|
// scheduleMsg(logger, "va=%d", configWorkingCopy.boardConfiguration.idleValvePin);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sendErrorCode(void) {
|
static void sendErrorCode(ts_channel_s *tsChannel) {
|
||||||
tunerStudioWriteCrcPacket(TS_RESPONSE_CRC_FAILURE, NULL, 0);
|
tunerStudioWriteCrcPacket(tsChannel, TS_RESPONSE_CRC_FAILURE, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void handlePageReadCommand(ts_response_format_e mode, uint16_t pageId, uint16_t offset, uint16_t count) {
|
void handlePageReadCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t pageId, uint16_t offset, uint16_t count) {
|
||||||
tsState.readPageCommandsCounter++;
|
tsState.readPageCommandsCounter++;
|
||||||
currentPageId = pageId;
|
currentPageId = pageId;
|
||||||
|
|
||||||
|
@ -308,12 +310,12 @@ void handlePageReadCommand(ts_response_format_e mode, uint16_t pageId, uint16_t
|
||||||
|
|
||||||
if (size < offset + count) {
|
if (size < offset + count) {
|
||||||
scheduleMsg(tsLogger, "invalid offset/count %d/%d", offset, count);
|
scheduleMsg(tsLogger, "invalid offset/count %d/%d", offset, count);
|
||||||
sendErrorCode();
|
sendErrorCode(tsChannel);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint8_t *addr = (const uint8_t *) (getWorkingPageAddr(currentPageId) + offset);
|
const uint8_t *addr = (const uint8_t *) (getWorkingPageAddr(currentPageId) + offset);
|
||||||
tsSendResponse(mode, addr, count);
|
tsSendResponse(tsChannel, mode, addr, count);
|
||||||
#if EFI_TUNER_STUDIO_VERBOSE
|
#if EFI_TUNER_STUDIO_VERBOSE
|
||||||
scheduleMsg(tsLogger, "Sending %d done", count);
|
scheduleMsg(tsLogger, "Sending %d done", count);
|
||||||
#endif
|
#endif
|
||||||
|
@ -329,7 +331,7 @@ void requestBurn(void) {
|
||||||
/**
|
/**
|
||||||
* 'Burn' command is a command to commit the changes
|
* 'Burn' command is a command to commit the changes
|
||||||
*/
|
*/
|
||||||
void handleBurnCommand(ts_response_format_e mode, uint16_t page) {
|
void handleBurnCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t page) {
|
||||||
efitimems_t nowMs = currentTimeMillis();
|
efitimems_t nowMs = currentTimeMillis();
|
||||||
tsState.burnCommandCounter++;
|
tsState.burnCommandCounter++;
|
||||||
|
|
||||||
|
@ -346,7 +348,7 @@ void handleBurnCommand(ts_response_format_e mode, uint16_t page) {
|
||||||
memcpy(&persistentState.persistentConfiguration, &configWorkingCopy, sizeof(persistent_config_s));
|
memcpy(&persistentState.persistentConfiguration, &configWorkingCopy, sizeof(persistent_config_s));
|
||||||
|
|
||||||
requestBurn();
|
requestBurn();
|
||||||
tunerStudioWriteCrcPacket(TS_RESPONSE_BURN_OK, NULL, 0);
|
tunerStudioWriteCrcPacket(tsChannel, TS_RESPONSE_BURN_OK, NULL, 0);
|
||||||
scheduleMsg(tsLogger, "BURN in %dms", currentTimeMillis() - nowMs);
|
scheduleMsg(tsLogger, "BURN in %dms", currentTimeMillis() - nowMs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -357,13 +359,14 @@ static short int pageIn;
|
||||||
static bool isKnownCommand(char command) {
|
static bool isKnownCommand(char command) {
|
||||||
return command == TS_HELLO_COMMAND || command == TS_READ_COMMAND || command == TS_OUTPUT_COMMAND
|
return command == TS_HELLO_COMMAND || command == TS_READ_COMMAND || command == TS_OUTPUT_COMMAND
|
||||||
|| command == TS_PAGE_COMMAND || command == TS_BURN_COMMAND || command == TS_SINGLE_WRITE_COMMAND
|
|| command == TS_PAGE_COMMAND || command == TS_BURN_COMMAND || command == TS_SINGLE_WRITE_COMMAND
|
||||||
|| command == TS_LEGACY_HELLO_COMMAND || command == TS_CHUNK_WRITE_COMMAND;
|
|| command == TS_LEGACY_HELLO_COMMAND || command == TS_CHUNK_WRITE_COMMAND
|
||||||
|
|| command == TS_EXECUTE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint8_t firstByte;
|
static uint8_t firstByte;
|
||||||
static uint8_t secondByte;
|
static uint8_t secondByte;
|
||||||
|
|
||||||
void runBinaryProtocolLoop(void) {
|
void runBinaryProtocolLoop(ts_channel_s *tsChannel) {
|
||||||
int wasReady = false;
|
int wasReady = false;
|
||||||
while (true) {
|
while (true) {
|
||||||
int isReady = ts_serial_ready();
|
int isReady = ts_serial_ready();
|
||||||
|
@ -380,16 +383,16 @@ void runBinaryProtocolLoop(void) {
|
||||||
|
|
||||||
tsState.tsCounter++;
|
tsState.tsCounter++;
|
||||||
|
|
||||||
int recieved = chSequentialStreamRead(getTsSerialDevice(), &firstByte, 1);
|
int recieved = chSequentialStreamRead(tsChannel->channel, &firstByte, 1);
|
||||||
if (recieved != 1) {
|
if (recieved != 1) {
|
||||||
tunerStudioError("ERROR: no command");
|
tunerStudioError("ERROR: no command");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// scheduleMsg(logger, "Got first=%x=[%c]", firstByte, firstByte);
|
// scheduleMsg(logger, "Got first=%x=[%c]", firstByte, firstByte);
|
||||||
if (handlePlainCommand(firstByte))
|
if (handlePlainCommand(tsChannel, firstByte))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
recieved = chSequentialStreamRead(getTsSerialDevice(), &secondByte, 1);
|
recieved = chSequentialStreamRead(tsChannel->channel, &secondByte, 1);
|
||||||
if (recieved != 1) {
|
if (recieved != 1) {
|
||||||
tunerStudioError("ERROR: no second");
|
tunerStudioError("ERROR: no second");
|
||||||
continue;
|
continue;
|
||||||
|
@ -401,11 +404,11 @@ void runBinaryProtocolLoop(void) {
|
||||||
if (incomingPacketSize == 0 || incomingPacketSize > (sizeof(crcReadBuffer) - CRC_WRAPPING_SIZE)) {
|
if (incomingPacketSize == 0 || incomingPacketSize > (sizeof(crcReadBuffer) - CRC_WRAPPING_SIZE)) {
|
||||||
scheduleMsg(tsLogger, "TunerStudio: invalid size: %d", incomingPacketSize);
|
scheduleMsg(tsLogger, "TunerStudio: invalid size: %d", incomingPacketSize);
|
||||||
tunerStudioError("ERROR: CRC header size");
|
tunerStudioError("ERROR: CRC header size");
|
||||||
sendErrorCode();
|
sendErrorCode(tsChannel);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
recieved = chnReadTimeout(getTsSerialDevice(), (uint8_t*)crcReadBuffer, 1, MS2ST(TS_READ_TIMEOUT));
|
recieved = chnReadTimeout(tsChannel->channel, (uint8_t*)crcReadBuffer, 1, MS2ST(TS_READ_TIMEOUT));
|
||||||
if (recieved != 1) {
|
if (recieved != 1) {
|
||||||
tunerStudioError("ERROR: did not receive command");
|
tunerStudioError("ERROR: did not receive command");
|
||||||
continue;
|
continue;
|
||||||
|
@ -414,13 +417,13 @@ void runBinaryProtocolLoop(void) {
|
||||||
char command = crcReadBuffer[0];
|
char command = crcReadBuffer[0];
|
||||||
if (!isKnownCommand(command)) {
|
if (!isKnownCommand(command)) {
|
||||||
scheduleMsg(tsLogger, "unexpected command %x", command);
|
scheduleMsg(tsLogger, "unexpected command %x", command);
|
||||||
sendErrorCode();
|
sendErrorCode(tsChannel);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// scheduleMsg(logger, "TunerStudio: reading %d+4 bytes(s)", incomingPacketSize);
|
// scheduleMsg(logger, "TunerStudio: reading %d+4 bytes(s)", incomingPacketSize);
|
||||||
|
|
||||||
recieved = chnReadTimeout(getTsSerialDevice(), (uint8_t * ) (crcReadBuffer + 1),
|
recieved = chnReadTimeout(tsChannel->channel, (uint8_t * ) (crcReadBuffer + 1),
|
||||||
incomingPacketSize + CRC_VALUE_SIZE - 1, MS2ST(TS_READ_TIMEOUT));
|
incomingPacketSize + CRC_VALUE_SIZE - 1, MS2ST(TS_READ_TIMEOUT));
|
||||||
int expectedSize = incomingPacketSize + CRC_VALUE_SIZE - 1;
|
int expectedSize = incomingPacketSize + CRC_VALUE_SIZE - 1;
|
||||||
if (recieved != expectedSize) {
|
if (recieved != expectedSize) {
|
||||||
|
@ -449,7 +452,7 @@ void runBinaryProtocolLoop(void) {
|
||||||
// scheduleMsg(logger, "TunerStudio: P00-07 %x %x %x %x %x %x %x %x", crcIoBuffer[0], crcIoBuffer[1],
|
// scheduleMsg(logger, "TunerStudio: P00-07 %x %x %x %x %x %x %x %x", crcIoBuffer[0], crcIoBuffer[1],
|
||||||
// crcIoBuffer[2], crcIoBuffer[3], crcIoBuffer[4], crcIoBuffer[5], crcIoBuffer[6], crcIoBuffer[7]);
|
// crcIoBuffer[2], crcIoBuffer[3], crcIoBuffer[4], crcIoBuffer[5], crcIoBuffer[6], crcIoBuffer[7]);
|
||||||
|
|
||||||
int success = tunerStudioHandleCrcCommand(crcReadBuffer, incomingPacketSize);
|
int success = tunerStudioHandleCrcCommand(tsChannel, crcReadBuffer, incomingPacketSize);
|
||||||
if (!success)
|
if (!success)
|
||||||
print("got unexpected TunerStudio command %x:%c\r\n", command, command);
|
print("got unexpected TunerStudio command %x:%c\r\n", command, command);
|
||||||
|
|
||||||
|
@ -464,7 +467,7 @@ static msg_t tsThreadEntryPoint(void *arg) {
|
||||||
startTsPort();
|
startTsPort();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
runBinaryProtocolLoop();
|
runBinaryProtocolLoop(&tsChannel);
|
||||||
|
|
||||||
#if defined __GNUC__
|
#if defined __GNUC__
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -494,80 +497,83 @@ void tunerStudioError(const char *msg) {
|
||||||
* Query with CRC takes place while re-establishing connection
|
* Query with CRC takes place while re-establishing connection
|
||||||
* Query without CRC takes place on TunerStudio startup
|
* Query without CRC takes place on TunerStudio startup
|
||||||
*/
|
*/
|
||||||
void handleQueryCommand(ts_response_format_e mode) {
|
void handleQueryCommand(ts_channel_s *tsChannel, ts_response_format_e mode) {
|
||||||
tsState.queryCommandCounter++;
|
tsState.queryCommandCounter++;
|
||||||
#if EFI_TUNER_STUDIO_VERBOSE
|
#if EFI_TUNER_STUDIO_VERBOSE
|
||||||
scheduleMsg(tsLogger, "got S/H (queryCommand) mode=%d", mode);
|
scheduleMsg(tsLogger, "got S/H (queryCommand) mode=%d", mode);
|
||||||
printTsStats();
|
printTsStats();
|
||||||
#endif
|
#endif
|
||||||
tsSendResponse(mode, (const uint8_t *) TS_SIGNATURE, strlen(TS_SIGNATURE) + 1);
|
tsSendResponse(tsChannel, mode, (const uint8_t *) TS_SIGNATURE, strlen(TS_SIGNATURE) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief 'Output' command sends out a snapshot of current values
|
* @brief 'Output' command sends out a snapshot of current values
|
||||||
*/
|
*/
|
||||||
void handleOutputChannelsCommand(ts_response_format_e mode) {
|
void handleOutputChannelsCommand(ts_channel_s *tsChannel, ts_response_format_e mode) {
|
||||||
tsState.outputChannelsCommandCounter++;
|
tsState.outputChannelsCommandCounter++;
|
||||||
// this method is invoked too often to print any debug information
|
// this method is invoked too often to print any debug information
|
||||||
tsSendResponse(mode, (const uint8_t *) &tsOutputChannels, sizeof(TunerStudioOutputChannels));
|
tsSendResponse(tsChannel, mode, (const uint8_t *) &tsOutputChannels, sizeof(TunerStudioOutputChannels));
|
||||||
}
|
}
|
||||||
|
|
||||||
void handleTestCommand(void) {
|
void handleTestCommand(ts_channel_s *tsChannel) {
|
||||||
/**
|
/**
|
||||||
* this is NOT a standard TunerStudio command, this is my own
|
* this is NOT a standard TunerStudio command, this is my own
|
||||||
* extension of the protocol to simplify troubleshooting
|
* extension of the protocol to simplify troubleshooting
|
||||||
*/
|
*/
|
||||||
tunerStudioDebug("got T (Test)");
|
tunerStudioDebug("got T (Test)");
|
||||||
tunerStudioWriteData((const uint8_t *)VCS_VERSION, sizeof(VCS_VERSION));
|
tunerStudioWriteData(tsChannel, (const uint8_t *)VCS_VERSION, sizeof(VCS_VERSION));
|
||||||
/**
|
/**
|
||||||
* Please note that this response is a magic constant used by dev console for protocol detection
|
* Please note that this response is a magic constant used by dev console for protocol detection
|
||||||
* @see EngineState#TS_PROTOCOL_TAG
|
* @see EngineState#TS_PROTOCOL_TAG
|
||||||
*/
|
*/
|
||||||
tunerStudioWriteData((const uint8_t *) " ts_p_alive\r\n", 8);
|
tunerStudioWriteData(tsChannel, (const uint8_t *) " ts_p_alive\r\n", 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handleExecuteCommand(char *data, int incomingPacketSize) {
|
extern CommandHandler console_line_callback;
|
||||||
data[incomingPacketSize] = 0;
|
|
||||||
|
|
||||||
|
static void handleExecuteCommand(ts_channel_s *tsChannel, char *data, int incomingPacketSize) {
|
||||||
|
tunerStudioWriteCrcPacket(tsChannel, TS_RESPONSE_COMMAND_OK, NULL, 0);
|
||||||
|
data[incomingPacketSize] = 0;
|
||||||
|
(console_line_callback)(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return true if legacy command was processed, false otherwise
|
* @return true if legacy command was processed, false otherwise
|
||||||
*/
|
*/
|
||||||
bool handlePlainCommand(uint8_t command) {
|
bool handlePlainCommand(ts_channel_s *tsChannel, uint8_t command) {
|
||||||
if (command == TS_HELLO_COMMAND || command == TS_HELLO_COMMAND_DEPRECATED) {
|
if (command == TS_HELLO_COMMAND || command == TS_HELLO_COMMAND_DEPRECATED) {
|
||||||
scheduleMsg(tsLogger, "Got naked Query command");
|
scheduleMsg(tsLogger, "Got naked Query command");
|
||||||
handleQueryCommand(TS_PLAIN);
|
handleQueryCommand(tsChannel, TS_PLAIN);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == 't' || command == 'T') {
|
} else if (command == 't' || command == 'T') {
|
||||||
handleTestCommand();
|
handleTestCommand(tsChannel);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_PAGE_COMMAND) {
|
} else if (command == TS_PAGE_COMMAND) {
|
||||||
int recieved = chSequentialStreamRead(getTsSerialDevice(), (uint8_t * )&pageIn, sizeof(pageIn));
|
int recieved = chSequentialStreamRead(tsChannel->channel, (uint8_t * )&pageIn, sizeof(pageIn));
|
||||||
// todo: validate 'recieved' value
|
// todo: validate 'recieved' value
|
||||||
handlePageSelectCommand(TS_PLAIN, pageIn);
|
handlePageSelectCommand(tsChannel, TS_PLAIN, pageIn);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_BURN_COMMAND) {
|
} else if (command == TS_BURN_COMMAND) {
|
||||||
scheduleMsg(tsLogger, "Got naked BURN");
|
scheduleMsg(tsLogger, "Got naked BURN");
|
||||||
uint16_t page;
|
uint16_t page;
|
||||||
int recieved = chSequentialStreamRead(getTsSerialDevice(), (uint8_t * )&page,
|
int recieved = chSequentialStreamRead(tsChannel->channel, (uint8_t * )&page,
|
||||||
sizeof(page));
|
sizeof(page));
|
||||||
if (recieved != sizeof(page)) {
|
if (recieved != sizeof(page)) {
|
||||||
tunerStudioError("ERROR: Not enough for plain burn");
|
tunerStudioError("ERROR: Not enough for plain burn");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
handleBurnCommand(TS_PLAIN, page);
|
handleBurnCommand(tsChannel, TS_PLAIN, page);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_CHUNK_WRITE_COMMAND) {
|
} else if (command == TS_CHUNK_WRITE_COMMAND) {
|
||||||
scheduleMsg(tsLogger, "Got naked CHUNK_WRITE");
|
scheduleMsg(tsLogger, "Got naked CHUNK_WRITE");
|
||||||
int recieved = chSequentialStreamRead(getTsSerialDevice(), (uint8_t * )&writeChunkRequest,
|
int recieved = chSequentialStreamRead(tsChannel->channel, (uint8_t * )&writeChunkRequest,
|
||||||
sizeof(writeChunkRequest));
|
sizeof(writeChunkRequest));
|
||||||
if (recieved != sizeof(writeChunkRequest)) {
|
if (recieved != sizeof(writeChunkRequest)) {
|
||||||
scheduleMsg(tsLogger, "ERROR: Not enough for plain chunk write header: %d", recieved);
|
scheduleMsg(tsLogger, "ERROR: Not enough for plain chunk write header: %d", recieved);
|
||||||
tsState.errorCounter++;
|
tsState.errorCounter++;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
recieved = chSequentialStreamRead(getTsSerialDevice(), (uint8_t * )&crcReadBuffer, writeChunkRequest.count);
|
recieved = chSequentialStreamRead(tsChannel->channel, (uint8_t * )&crcReadBuffer, writeChunkRequest.count);
|
||||||
if (recieved != writeChunkRequest.count) {
|
if (recieved != writeChunkRequest.count) {
|
||||||
scheduleMsg(tsLogger, "ERROR: Not enough for plain chunk write content: %d while expecting %d", recieved, writeChunkRequest.count);
|
scheduleMsg(tsLogger, "ERROR: Not enough for plain chunk write content: %d while expecting %d", recieved, writeChunkRequest.count);
|
||||||
tsState.errorCounter++;
|
tsState.errorCounter++;
|
||||||
|
@ -575,66 +581,66 @@ bool handlePlainCommand(uint8_t command) {
|
||||||
}
|
}
|
||||||
currentPageId = writeChunkRequest.page;
|
currentPageId = writeChunkRequest.page;
|
||||||
|
|
||||||
handleWriteChunkCommand(TS_PLAIN, writeChunkRequest.offset, writeChunkRequest.count, (uint8_t * )&crcWriteBuffer);
|
handleWriteChunkCommand(tsChannel, TS_PLAIN, writeChunkRequest.offset, writeChunkRequest.count, (uint8_t * )&crcReadBuffer);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_READ_COMMAND) {
|
} else if (command == TS_READ_COMMAND) {
|
||||||
//scheduleMsg(logger, "Got naked READ PAGE???");
|
//scheduleMsg(logger, "Got naked READ PAGE???");
|
||||||
int recieved = chSequentialStreamRead(getTsSerialDevice(), (uint8_t * )&readRequest, sizeof(readRequest));
|
int recieved = chSequentialStreamRead(tsChannel->channel, (uint8_t * )&readRequest, sizeof(readRequest));
|
||||||
if (recieved != sizeof(readRequest)) {
|
if (recieved != sizeof(readRequest)) {
|
||||||
tunerStudioError("Not enough for plain read header");
|
tunerStudioError("Not enough for plain read header");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
handlePageReadCommand(TS_PLAIN, readRequest.page, readRequest.offset, readRequest.count);
|
handlePageReadCommand(tsChannel, TS_PLAIN, readRequest.page, readRequest.offset, readRequest.count);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_OUTPUT_COMMAND) {
|
} else if (command == TS_OUTPUT_COMMAND) {
|
||||||
//scheduleMsg(logger, "Got naked Channels???");
|
//scheduleMsg(logger, "Got naked Channels???");
|
||||||
handleOutputChannelsCommand(TS_PLAIN);
|
handleOutputChannelsCommand(tsChannel, TS_PLAIN);
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_LEGACY_HELLO_COMMAND) {
|
} else if (command == TS_LEGACY_HELLO_COMMAND) {
|
||||||
tunerStudioDebug("ignoring LEGACY_HELLO_COMMAND");
|
tunerStudioDebug("ignoring LEGACY_HELLO_COMMAND");
|
||||||
return true;
|
return true;
|
||||||
} else if (command == TS_COMMAND_F) {
|
} else if (command == TS_COMMAND_F) {
|
||||||
tunerStudioDebug("not ignoring F");
|
tunerStudioDebug("not ignoring F");
|
||||||
tunerStudioWriteData((const uint8_t *) PROTOCOL, strlen(PROTOCOL));
|
tunerStudioWriteData(tsChannel, (const uint8_t *) PROTOCOL, strlen(PROTOCOL));
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int tunerStudioHandleCrcCommand(char *data, int incomingPacketSize) {
|
int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomingPacketSize) {
|
||||||
char command = data[0];
|
char command = data[0];
|
||||||
data++;
|
data++;
|
||||||
if (command == TS_HELLO_COMMAND || command == TS_HELLO_COMMAND_DEPRECATED) {
|
if (command == TS_HELLO_COMMAND || command == TS_HELLO_COMMAND_DEPRECATED) {
|
||||||
tunerStudioDebug("got Query command");
|
tunerStudioDebug("got Query command");
|
||||||
handleQueryCommand(TS_CRC);
|
handleQueryCommand(tsChannel, TS_CRC);
|
||||||
} else if (command == TS_EXECUTE) {
|
} else if (command == TS_EXECUTE) {
|
||||||
handleExecuteCommand(data, incomingPacketSize);
|
handleExecuteCommand(tsChannel, data, incomingPacketSize);
|
||||||
} else if (command == TS_OUTPUT_COMMAND) {
|
} else if (command == TS_OUTPUT_COMMAND) {
|
||||||
handleOutputChannelsCommand(TS_CRC);
|
handleOutputChannelsCommand(tsChannel, TS_CRC);
|
||||||
} else if (command == TS_PAGE_COMMAND) {
|
} else if (command == TS_PAGE_COMMAND) {
|
||||||
uint16_t page = *(uint16_t *) data;
|
uint16_t page = *(uint16_t *) data;
|
||||||
handlePageSelectCommand(TS_CRC, page);
|
handlePageSelectCommand(tsChannel, TS_CRC, page);
|
||||||
} else if (command == TS_CHUNK_WRITE_COMMAND) {
|
} else if (command == TS_CHUNK_WRITE_COMMAND) {
|
||||||
currentPageId = *(uint16_t *) data;
|
currentPageId = *(uint16_t *) data;
|
||||||
uint16_t offset = *(uint16_t *) (data + 2);
|
uint16_t offset = *(uint16_t *) (data + 2);
|
||||||
uint16_t count = *(uint16_t *) (data + 4);
|
uint16_t count = *(uint16_t *) (data + 4);
|
||||||
handleWriteChunkCommand(TS_CRC, offset, count, data + sizeof(TunerStudioWriteChunkRequest));
|
handleWriteChunkCommand(tsChannel, TS_CRC, offset, count, data + sizeof(TunerStudioWriteChunkRequest));
|
||||||
} else if (command == TS_SINGLE_WRITE_COMMAND) {
|
} else if (command == TS_SINGLE_WRITE_COMMAND) {
|
||||||
uint16_t page = *(uint16_t *) data;
|
uint16_t page = *(uint16_t *) data;
|
||||||
uint16_t offset = *(uint16_t *) (data + 2);
|
uint16_t offset = *(uint16_t *) (data + 2);
|
||||||
uint8_t value = data[4];
|
uint8_t value = data[4];
|
||||||
handleWriteValueCommand(TS_CRC, page, offset, value);
|
handleWriteValueCommand(tsChannel, TS_CRC, page, offset, value);
|
||||||
} else if (command == TS_BURN_COMMAND) {
|
} else if (command == TS_BURN_COMMAND) {
|
||||||
uint16_t page = *(uint16_t *) data;
|
uint16_t page = *(uint16_t *) data;
|
||||||
handleBurnCommand(TS_CRC, page);
|
handleBurnCommand(tsChannel, TS_CRC, page);
|
||||||
} else if (command == TS_READ_COMMAND) {
|
} else if (command == TS_READ_COMMAND) {
|
||||||
uint16_t page = *(uint16_t *) data;
|
uint16_t page = *(uint16_t *) data;
|
||||||
uint16_t offset = *(uint16_t *) (data + 2);
|
uint16_t offset = *(uint16_t *) (data + 2);
|
||||||
uint16_t count = *(uint16_t *) (data + 4);
|
uint16_t count = *(uint16_t *) (data + 4);
|
||||||
handlePageReadCommand(TS_CRC, page, offset, count);
|
handlePageReadCommand(tsChannel, TS_CRC, page, offset, count);
|
||||||
} else if (command == 't' || command == 'T') {
|
} else if (command == 't' || command == 'T') {
|
||||||
handleTestCommand();
|
handleTestCommand(tsChannel);
|
||||||
} else if (command == TS_LEGACY_HELLO_COMMAND) {
|
} else if (command == TS_LEGACY_HELLO_COMMAND) {
|
||||||
/**
|
/**
|
||||||
* 'Q' is the query command used for compatibility with older ECUs
|
* 'Q' is the query command used for compatibility with older ECUs
|
||||||
|
@ -672,6 +678,9 @@ void startTunerStudioConnectivity(Logging *sharedLogger) {
|
||||||
addConsoleAction("reset_ts", resetTs);
|
addConsoleAction("reset_ts", resetTs);
|
||||||
addConsoleActionI("set_ts_speed", setTsSpeed);
|
addConsoleActionI("set_ts_speed", setTsSpeed);
|
||||||
|
|
||||||
|
tsChannel.channel = getTsSerialDevice();
|
||||||
|
// tsChannel.writeBuffer
|
||||||
|
|
||||||
chThdCreateStatic(tsThreadStack, sizeof(tsThreadStack), NORMALPRIO, tsThreadEntryPoint, NULL);
|
chThdCreateStatic(tsThreadStack, sizeof(tsThreadStack), NORMALPRIO, tsThreadEntryPoint, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,20 +29,20 @@ typedef struct {
|
||||||
int tsCounter;
|
int tsCounter;
|
||||||
} tunerstudio_counters_s;
|
} tunerstudio_counters_s;
|
||||||
|
|
||||||
bool handlePlainCommand(uint8_t command);
|
bool handlePlainCommand(ts_channel_s *tsChannel, uint8_t command);
|
||||||
int tunerStudioHandleCrcCommand(char *data, int incomingPacketSize);
|
int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomingPacketSize);
|
||||||
|
|
||||||
void handleTestCommand(void);
|
void handleTestCommand(ts_channel_s *tsChannel);
|
||||||
void handleQueryCommand(ts_response_format_e mode);
|
void handleQueryCommand(ts_channel_s *tsChannel, ts_response_format_e mode);
|
||||||
void handleOutputChannelsCommand(ts_response_format_e mode);
|
void handleOutputChannelsCommand(ts_channel_s *tsChannel, ts_response_format_e mode);
|
||||||
|
|
||||||
char *getWorkingPageAddr(int pageIndex);
|
char *getWorkingPageAddr(int pageIndex);
|
||||||
int getTunerStudioPageSize(int pageIndex);
|
int getTunerStudioPageSize(int pageIndex);
|
||||||
void handleWriteValueCommand(ts_response_format_e mode, uint16_t page, uint16_t offset, uint8_t value);
|
void handleWriteValueCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t page, uint16_t offset, uint8_t value);
|
||||||
void handleWriteChunkCommand(ts_response_format_e mode, short offset, short count, void *content);
|
void handleWriteChunkCommand(ts_channel_s *tsChannel, ts_response_format_e mode, short offset, short count, void *content);
|
||||||
void handlePageSelectCommand(ts_response_format_e mode, uint16_t pageId);
|
void handlePageSelectCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t pageId);
|
||||||
void handlePageReadCommand(ts_response_format_e mode, uint16_t pageId, uint16_t offset, uint16_t count);
|
void handlePageReadCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t pageId, uint16_t offset, uint16_t count);
|
||||||
void handleBurnCommand(ts_response_format_e mode, uint16_t page);
|
void handleBurnCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint16_t page);
|
||||||
|
|
||||||
void tunerStudioDebug(const char *msg);
|
void tunerStudioDebug(const char *msg);
|
||||||
void tunerStudioError(const char *msg);
|
void tunerStudioError(const char *msg);
|
||||||
|
|
|
@ -19,6 +19,7 @@ extern Logging *tsLogger;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uint8_t crcWriteBuffer[300];
|
uint8_t crcWriteBuffer[300];
|
||||||
|
extern char crcReadBuffer[300];
|
||||||
|
|
||||||
#if EFI_PROD_CODE || defined(__DOXYGEN__)
|
#if EFI_PROD_CODE || defined(__DOXYGEN__)
|
||||||
#include "pin_repository.h"
|
#include "pin_repository.h"
|
||||||
|
@ -65,8 +66,8 @@ BaseChannel * getTsSerialDevice(void) {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void tunerStudioWriteData(const uint8_t * buffer, int size) {
|
void tunerStudioWriteData(ts_channel_s *tsChannel, const uint8_t * buffer, int size) {
|
||||||
int transferred = chSequentialStreamWrite(getTsSerialDevice(), buffer, size);
|
int transferred = chSequentialStreamWrite(tsChannel->channel, buffer, size);
|
||||||
if (transferred != size) {
|
if (transferred != size) {
|
||||||
scheduleMsg(tsLogger, "!!! NOT ACCEPTED %d out of %d !!!", transferred, size);
|
scheduleMsg(tsLogger, "!!! NOT ACCEPTED %d out of %d !!!", transferred, size);
|
||||||
}
|
}
|
||||||
|
@ -75,27 +76,30 @@ void tunerStudioWriteData(const uint8_t * buffer, int size) {
|
||||||
/**
|
/**
|
||||||
* Adds size to the beginning of a packet and a crc32 at the end. Then send the packet.
|
* Adds size to the beginning of a packet and a crc32 at the end. Then send the packet.
|
||||||
*/
|
*/
|
||||||
void tunerStudioWriteCrcPacket(const uint8_t command, const void *buf, const uint16_t size) {
|
void tunerStudioWriteCrcPacket(ts_channel_s *tsChannel, const uint8_t command, const void *buf, const uint16_t size) {
|
||||||
|
|
||||||
|
uint8_t *writeBuffer = crcWriteBuffer;
|
||||||
|
|
||||||
// todo: max size validation
|
// todo: max size validation
|
||||||
*(uint16_t *) crcWriteBuffer = SWAP_UINT16(size + 1); // packet size including command
|
*(uint16_t *) writeBuffer = SWAP_UINT16(size + 1); // packet size including command
|
||||||
*(uint8_t *) (crcWriteBuffer + 2) = command;
|
*(uint8_t *) (writeBuffer + 2) = command;
|
||||||
if (size != 0)
|
if (size != 0)
|
||||||
memcpy(crcWriteBuffer + 3, buf, size);
|
memcpy(writeBuffer + 3, buf, size);
|
||||||
// CRC on whole packet
|
// CRC on whole packet
|
||||||
uint32_t crc = crc32((void *) (crcWriteBuffer + 2), (uint32_t) (size + 1));
|
uint32_t crc = crc32((void *) (writeBuffer + 2), (uint32_t) (size + 1));
|
||||||
*(uint32_t *) (crcWriteBuffer + 2 + 1 + size) = SWAP_UINT32(crc);
|
*(uint32_t *) (writeBuffer + 2 + 1 + size) = SWAP_UINT32(crc);
|
||||||
|
|
||||||
// scheduleMsg(logger, "TunerStudio: CRC command %x size %d", command, size);
|
// scheduleMsg(logger, "TunerStudio: CRC command %x size %d", command, size);
|
||||||
|
|
||||||
tunerStudioWriteData(crcWriteBuffer, size + 2 + 1 + 4); // with size, command and CRC
|
tunerStudioWriteData(tsChannel, writeBuffer, size + 2 + 1 + 4); // with size, command and CRC
|
||||||
}
|
}
|
||||||
|
|
||||||
void tsSendResponse(ts_response_format_e mode, const uint8_t * buffer, int size) {
|
void tsSendResponse(ts_channel_s *tsChannel, ts_response_format_e mode, const uint8_t * buffer, int size) {
|
||||||
if (mode == TS_CRC) {
|
if (mode == TS_CRC) {
|
||||||
tunerStudioWriteCrcPacket(TS_RESPONSE_OK, buffer, size);
|
tunerStudioWriteCrcPacket(tsChannel, TS_RESPONSE_OK, buffer, size);
|
||||||
} else {
|
} else {
|
||||||
if (size > 0)
|
if (size > 0)
|
||||||
tunerStudioWriteData(buffer, size);
|
tunerStudioWriteData(tsChannel, buffer, size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#define TS_RESPONSE_OK 0x00
|
#define TS_RESPONSE_OK 0x00
|
||||||
#define TS_RESPONSE_BURN_OK 0x04
|
#define TS_RESPONSE_BURN_OK 0x04
|
||||||
|
#define TS_RESPONSE_COMMAND_OK 0x07
|
||||||
#define TS_RESPONSE_CRC_FAILURE 0x82
|
#define TS_RESPONSE_CRC_FAILURE 0x82
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@ -26,6 +27,12 @@ typedef enum {
|
||||||
TS_CRC = 1
|
TS_CRC = 1
|
||||||
} ts_response_format_e;
|
} ts_response_format_e;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
BaseChannel * channel;
|
||||||
|
uint8_t *writeBuffer;
|
||||||
|
char crcReadBuffer[300];
|
||||||
|
} ts_channel_s;
|
||||||
|
|
||||||
#define TS_HELLO_COMMAND_DEPRECATED 'H'
|
#define TS_HELLO_COMMAND_DEPRECATED 'H'
|
||||||
#define TS_HELLO_COMMAND 'S'
|
#define TS_HELLO_COMMAND 'S'
|
||||||
#define TS_LEGACY_HELLO_COMMAND 'Q'
|
#define TS_LEGACY_HELLO_COMMAND 'Q'
|
||||||
|
@ -46,8 +53,8 @@ typedef enum {
|
||||||
BaseChannel * getTsSerialDevice(void);
|
BaseChannel * getTsSerialDevice(void);
|
||||||
void startTsPort(void);
|
void startTsPort(void);
|
||||||
|
|
||||||
void tunerStudioWriteData(const uint8_t * buffer, int size);
|
void tunerStudioWriteData(ts_channel_s *tsChannel, const uint8_t * buffer, int size);
|
||||||
void tunerStudioWriteCrcPacket(const uint8_t command, const void *buf, const uint16_t size);
|
void tunerStudioWriteCrcPacket(ts_channel_s *tsChannel, const uint8_t command, const void *buf, const uint16_t size);
|
||||||
void tsSendResponse(ts_response_format_e mode, const uint8_t * buffer, int size);
|
void tsSendResponse(ts_channel_s *tsChannel, ts_response_format_e mode, const uint8_t * buffer, int size);
|
||||||
|
|
||||||
#endif /* CONSOLE_TUNERSTUDIO_TUNERSTUDIO_IO_H_ */
|
#endif /* CONSOLE_TUNERSTUDIO_TUNERSTUDIO_IO_H_ */
|
||||||
|
|
|
@ -21,6 +21,7 @@ public class BinaryProtocol {
|
||||||
private static final int BLOCKING_FACTOR = 256;
|
private static final int BLOCKING_FACTOR = 256;
|
||||||
private static final byte RESPONSE_OK = 0;
|
private static final byte RESPONSE_OK = 0;
|
||||||
private static final byte RESPONSE_BURN_OK = 0x04;
|
private static final byte RESPONSE_BURN_OK = 0x04;
|
||||||
|
private static final byte RESPONSE_COMMAND_OK = 0x07;
|
||||||
private final Logger logger;
|
private final Logger logger;
|
||||||
private final SerialPort serialPort;
|
private final SerialPort serialPort;
|
||||||
private static final int BUFFER_SIZE = 10000;
|
private static final int BUFFER_SIZE = 10000;
|
||||||
|
@ -247,4 +248,19 @@ public class BinaryProtocol {
|
||||||
logger.info("Sending " + Arrays.toString(packet));
|
logger.info("Sending " + Arrays.toString(packet));
|
||||||
serialPort.writeBytes(packet);
|
serialPort.writeBytes(packet);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void sendTextCommand(String text) throws SerialPortException, EOFException, InterruptedException {
|
||||||
|
byte[] asBytes = text.getBytes();
|
||||||
|
byte[] command = new byte[asBytes.length + 1];
|
||||||
|
command[0] = 'E';
|
||||||
|
System.arraycopy(asBytes, 0, command, 1, asBytes.length);
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
byte[] response = exchange(command);
|
||||||
|
if (!checkResponseCode(response, RESPONSE_COMMAND_OK) || response.length != 1) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue