882 lines
28 KiB
C++
882 lines
28 KiB
C++
/**
|
|
* @file tunerstudio.cpp
|
|
* @brief Binary protocol implementation
|
|
*
|
|
* This implementation would not happen without the documentation
|
|
* provided by Jon Zeeff (jon@zeeff.com)
|
|
*
|
|
*
|
|
* @brief Integration with EFI Analytics Tuner Studio software
|
|
*
|
|
* Tuner Studio has a really simple protocol, a minimal implementation
|
|
* capable of displaying current engine state on the gauges would
|
|
* require only two commands: queryCommand and ochGetCommand
|
|
*
|
|
* queryCommand:
|
|
* Communication initialization command. TunerStudio sends a single byte H
|
|
* ECU response:
|
|
* One of the known ECU id strings.
|
|
*
|
|
* ochGetCommand:
|
|
* Request for output channels state.TunerStudio sends a single byte O
|
|
* ECU response:
|
|
* A snapshot of output channels as described in [OutputChannels] section of the .ini file
|
|
* The length of this block is 'ochBlockSize' property of the .ini file
|
|
*
|
|
* These two commands are enough to get working gauges. In order to start configuring the ECU using
|
|
* tuner studio, three more commands should be implemented:
|
|
*
|
|
*
|
|
* @date Oct 22, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*
|
|
* This file is part of rusEfi - see http://rusefi.com
|
|
*
|
|
* rusEfi 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.
|
|
*
|
|
* rusEfi 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
* This file is part of rusEfi - see http://rusefi.com
|
|
*
|
|
* rusEfi 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.
|
|
*
|
|
* rusEfi 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "global.h"
|
|
#include "os_access.h"
|
|
|
|
#include "allsensors.h"
|
|
#include "tunerstudio.h"
|
|
#include "tunerstudio_impl.h"
|
|
|
|
#include "main_trigger_callback.h"
|
|
#include "flash_main.h"
|
|
|
|
#include "tunerstudio_io.h"
|
|
#include "tunerstudio_outputs.h"
|
|
#include "malfunction_central.h"
|
|
#include "console_io.h"
|
|
#include "crc.h"
|
|
#include "bluetooth.h"
|
|
#include "tunerstudio_io.h"
|
|
#include "tooth_logger.h"
|
|
#include "electronic_throttle.h"
|
|
|
|
#include <string.h>
|
|
#include "engine_configuration.h"
|
|
#include "bench_test.h"
|
|
#include "svnversion.h"
|
|
#include "loggingcentral.h"
|
|
#include "status_loop.h"
|
|
#include "mmc_card.h"
|
|
#include "perf_trace.h"
|
|
#include "thread_priority.h"
|
|
|
|
#include "signature.h"
|
|
|
|
#if EFI_SIMULATOR
|
|
#include "rusEfiFunctionalTest.h"
|
|
#endif /* EFI_SIMULATOR */
|
|
|
|
#if EFI_TUNER_STUDIO
|
|
|
|
/* 1S */
|
|
#define TS_COMMUNICATION_TIMEOUT TIME_MS2I(1000)
|
|
|
|
extern persistent_config_container_s persistentState;
|
|
|
|
#if !defined(EFI_NO_CONFIG_WORKING_COPY)
|
|
/**
|
|
* this is a local copy of the configuration. Any changes to this copy
|
|
* have no effect until this copy is explicitly propagated to the main working copy
|
|
*/
|
|
persistent_config_s configWorkingCopy;
|
|
|
|
#endif /* EFI_NO_CONFIG_WORKING_COPY */
|
|
|
|
static efitimems_t previousWriteReportMs = 0;
|
|
|
|
static void resetTs(void) {
|
|
memset(&tsState, 0, sizeof(tsState));
|
|
}
|
|
|
|
static void printErrorCounters(void) {
|
|
efiPrintf("TunerStudio size=%d / total=%d / errors=%d / H=%d / O=%d / P=%d / B=%d",
|
|
sizeof(tsOutputChannels), tsState.totalCounter, tsState.errorCounter, tsState.queryCommandCounter,
|
|
tsState.outputChannelsCommandCounter, tsState.readPageCommandsCounter, tsState.burnCommandCounter);
|
|
efiPrintf("TunerStudio W=%d / C=%d / P=%d", tsState.writeValueCommandCounter,
|
|
tsState.writeChunkCommandCounter, tsState.pageCommandCounter);
|
|
}
|
|
|
|
void printTsStats(void) {
|
|
#if EFI_PROD_CODE
|
|
if (false) {
|
|
// todo: is this code needed somewhere else?
|
|
efiPrintf("TS RX on %s", hwPortname(engineConfiguration->binarySerialRxPin));
|
|
|
|
efiPrintf("TS TX on %s @%d", hwPortname(engineConfiguration->binarySerialTxPin),
|
|
CONFIG(tunerStudioSerialSpeed));
|
|
}
|
|
#endif /* EFI_PROD_CODE */
|
|
|
|
printErrorCounters();
|
|
}
|
|
|
|
static void setTsSpeed(int value) {
|
|
CONFIG(tunerStudioSerialSpeed) = value;
|
|
printTsStats();
|
|
}
|
|
|
|
#if EFI_BLUETOOTH_SETUP
|
|
|
|
// Bluetooth HC-05 module initialization start (it waits for disconnect and then communicates to the module)
|
|
static void bluetoothHC05(const char *baudRate, const char *name, const char *pinCode) {
|
|
bluetoothStart(getBluetoothChannel(), BLUETOOTH_HC_05, baudRate, name, pinCode);
|
|
}
|
|
|
|
// Bluetooth HC-06 module initialization start (it waits for disconnect and then communicates to the module)
|
|
static void bluetoothHC06(const char *baudRate, const char *name, const char *pinCode) {
|
|
bluetoothStart(getBluetoothChannel(), BLUETOOTH_HC_06, baudRate, name, pinCode);
|
|
}
|
|
|
|
// Bluetooth SPP-C module initialization start (it waits for disconnect and then communicates to the module)
|
|
static void bluetoothSPP(const char *baudRate, const char *name, const char *pinCode) {
|
|
bluetoothStart(getBluetoothChannel(), BLUETOOTH_SPP, baudRate, name, pinCode);
|
|
}
|
|
#endif /* EFI_BLUETOOTH_SETUP */
|
|
|
|
void tunerStudioDebug(const char *msg) {
|
|
#if EFI_TUNER_STUDIO_VERBOSE
|
|
efiPrintf("%s", msg);
|
|
#endif /* EFI_TUNER_STUDIO_VERBOSE */
|
|
}
|
|
|
|
char *getWorkingPageAddr() {
|
|
#ifndef EFI_NO_CONFIG_WORKING_COPY
|
|
return (char*) &configWorkingCopy.engineConfiguration;
|
|
#else
|
|
return (char*) engineConfiguration;
|
|
#endif /* EFI_NO_CONFIG_WORKING_COPY */
|
|
}
|
|
|
|
static constexpr size_t getTunerStudioPageSize() {
|
|
return TOTAL_CONFIG_SIZE;
|
|
}
|
|
|
|
void sendOkResponse(TsChannelBase *tsChannel, ts_response_format_e mode) {
|
|
tsChannel->sendResponse(mode, NULL, 0);
|
|
}
|
|
|
|
static void sendErrorCode(TsChannelBase *tsChannel, uint8_t code) {
|
|
tsChannel->writeCrcPacket(code, nullptr, 0);
|
|
}
|
|
|
|
void TunerStudio::sendErrorCode(TsChannelBase* tsChannel, uint8_t code) {
|
|
::sendErrorCode(tsChannel, code);
|
|
}
|
|
|
|
static void handlePageSelectCommand(TsChannelBase *tsChannel, ts_response_format_e mode) {
|
|
tsState.pageCommandCounter++;
|
|
|
|
sendOkResponse(tsChannel, mode);
|
|
}
|
|
|
|
/**
|
|
* Copy specified amount of bytes from specified offset from communication layer working copy into real configuration
|
|
*
|
|
* Some changes like changing VE table or timing table are applied right away, meaning
|
|
* that the values are copied from communication copy into actual engine control copy right away.
|
|
* We call these parameters 'soft parameters'
|
|
*
|
|
* This is needed to support TS online auto-tune.
|
|
*
|
|
* On the contrary, 'hard parameters' are waiting for the Burn button to be clicked and configuration version
|
|
* would be increased and much more complicated logic would be executed.
|
|
*/
|
|
static void onlineApplyWorkingCopyBytes(uint32_t offset, int count) {
|
|
if (offset >= sizeof(engine_configuration_s)) {
|
|
int maxSize = sizeof(persistent_config_s) - offset;
|
|
if (count > maxSize) {
|
|
warning(CUSTOM_TS_OVERFLOW, "TS overflow %d %d", offset, count);
|
|
return;
|
|
}
|
|
efiPrintf("applying soft change from %d length %d", offset, count);
|
|
#if !defined(EFI_NO_CONFIG_WORKING_COPY)
|
|
memcpy(((char*) &persistentState.persistentConfiguration) + offset, ((char*) &configWorkingCopy) + offset,
|
|
count);
|
|
#endif /* EFI_NO_CONFIG_WORKING_COPY */
|
|
|
|
}
|
|
// todo: ECU does not burn while engine is running yet tune CRC
|
|
// tune CRC is calculated based on the latest online part (FSIO formulas are in online region of the tune)
|
|
// open question what's the best strategy to balance coding efforts, performance matters and tune crc functionality
|
|
// open question what is the runtime cost of wiping 2K of bytes on each IO communication, could be that 2K of byte memset
|
|
// is negligable comparing with the IO costs?
|
|
}
|
|
|
|
static const void * getStructAddr(int structId) {
|
|
switch (structId) {
|
|
case LDS_ENGINE_STATE_INDEX:
|
|
return static_cast<engine_state2_s*>(&engine->engineState);
|
|
case LDS_FUEL_TRIM_STATE_INDEX:
|
|
return static_cast<wall_fuel_state*>(&engine->injectionEvents.elements[0].wallFuel);
|
|
case LDS_TRIGGER_CENTRAL_STATE_INDEX:
|
|
return static_cast<trigger_central_s*>(&engine->triggerCentral);
|
|
case LDS_TRIGGER_STATE_STATE_INDEX:
|
|
return static_cast<trigger_state_s*>(&engine->triggerCentral.triggerState);
|
|
#if EFI_ELECTRONIC_THROTTLE_BODY
|
|
case LDS_ETB_PID_STATE_INDEX:
|
|
return engine->etbControllers[0]->getPidState();
|
|
#endif /* EFI_ELECTRONIC_THROTTLE_BODY */
|
|
|
|
#ifndef EFI_IDLE_CONTROL
|
|
case LDS_IDLE_PID_STATE_INDEX:
|
|
return static_cast<pid_state_s*>(getIdlePid());
|
|
#endif /* EFI_IDLE_CONTROL */
|
|
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read internal structure for Live Doc
|
|
* This is somewhat similar to read page and somewhat similar to read outputs
|
|
* We can later consider combining this functionality
|
|
*/
|
|
static void handleGetStructContent(TsChannelBase* tsChannel, int structId, int size) {
|
|
tsState.readPageCommandsCounter++;
|
|
|
|
const void *addr = getStructAddr(structId);
|
|
if (addr == nullptr) {
|
|
// todo: add warning code - unexpected structId
|
|
return;
|
|
}
|
|
tsChannel->sendResponse(TS_CRC, (const uint8_t *)addr, size);
|
|
}
|
|
|
|
// Validate whether the specified offset and count would cause an overrun in the tune.
|
|
// Returns true if an overrun would occur.
|
|
static bool validateOffsetCount(size_t offset, size_t count, TsChannelBase* tsChannel) {
|
|
if (offset + count > getTunerStudioPageSize()) {
|
|
efiPrintf("TS: Project mismatch? Too much configuration requested %d/%d", offset, count);
|
|
tunerStudioError("ERROR: out of range");
|
|
sendErrorCode(tsChannel, TS_RESPONSE_OUT_OF_RANGE);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// This is used to prevent TS from reading/writing when we have just applied a preset, to prevent TS getting confused.
|
|
// At the same time an ECU reboot is forced by triggering a fatal error, informing the user to please restart
|
|
// the ECU. Forcing a reboot will force TS to re-read the tune CRC,
|
|
bool rebootForPresetPending = false;
|
|
|
|
/**
|
|
* This command is needed to make the whole transfer a bit faster
|
|
* @note See also handleWriteValueCommand
|
|
*/
|
|
static void handleWriteChunkCommand(TsChannelBase* tsChannel, ts_response_format_e mode, uint16_t offset, uint16_t count,
|
|
void *content) {
|
|
tsState.writeChunkCommandCounter++;
|
|
|
|
efiPrintf("WRITE CHUNK mode=%d o=%d s=%d", mode, offset, count);
|
|
|
|
if (validateOffsetCount(offset, count, tsChannel)) {
|
|
return;
|
|
}
|
|
|
|
// Skip the write if a preset was just loaded - we don't want to overwrite it
|
|
if (!rebootForPresetPending) {
|
|
uint8_t * addr = (uint8_t *) (getWorkingPageAddr() + offset);
|
|
memcpy(addr, content, count);
|
|
onlineApplyWorkingCopyBytes(offset, count);
|
|
}
|
|
|
|
sendOkResponse(tsChannel, mode);
|
|
}
|
|
|
|
static void handleCrc32Check(TsChannelBase *tsChannel, ts_response_format_e mode, uint16_t offset, uint16_t count) {
|
|
tsState.crc32CheckCommandCounter++;
|
|
|
|
// Ensure we are reading from in bounds
|
|
if (validateOffsetCount(offset, count, tsChannel)) {
|
|
return;
|
|
}
|
|
|
|
const char* start = getWorkingPageAddr() + offset;
|
|
|
|
uint32_t crc = SWAP_UINT32(crc32(start, count));
|
|
tsChannel->sendResponse(mode, (const uint8_t *) &crc, 4);
|
|
}
|
|
|
|
/**
|
|
* 'Write' command receives a single value at a given offset
|
|
* @note Writing values one by one is pretty slow
|
|
*/
|
|
static void handleWriteValueCommand(TsChannelBase* tsChannel, ts_response_format_e mode, uint16_t offset, uint8_t value) {
|
|
UNUSED(tsChannel);
|
|
UNUSED(mode);
|
|
|
|
tsState.writeValueCommandCounter++;
|
|
|
|
tunerStudioDebug("got W (Write)"); // we can get a lot of these
|
|
|
|
if (validateOffsetCount(offset, 1, tsChannel)) {
|
|
return;
|
|
}
|
|
|
|
efitimems_t nowMs = currentTimeMillis();
|
|
if (nowMs - previousWriteReportMs > 5) {
|
|
previousWriteReportMs = nowMs;
|
|
efiPrintf("offset %d: value=%d", offset, value);
|
|
}
|
|
|
|
// Skip the write if a preset was just loaded - we don't want to overwrite it
|
|
if (!rebootForPresetPending) {
|
|
getWorkingPageAddr()[offset] = value;
|
|
|
|
onlineApplyWorkingCopyBytes(offset, 1);
|
|
}
|
|
}
|
|
|
|
static void handlePageReadCommand(TsChannelBase* tsChannel, ts_response_format_e mode, uint16_t offset, uint16_t count) {
|
|
tsState.readPageCommandsCounter++;
|
|
|
|
if (rebootForPresetPending) {
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNRECOGNIZED_COMMAND);
|
|
return;
|
|
}
|
|
|
|
#if EFI_TUNER_STUDIO_VERBOSE
|
|
efiPrintf("READ mode=%d offset=%d size=%d", mode, offset, count);
|
|
#endif
|
|
|
|
if (validateOffsetCount(offset, count, tsChannel)) {
|
|
return;
|
|
}
|
|
|
|
const uint8_t *addr = (const uint8_t *) (getWorkingPageAddr() + offset);
|
|
tsChannel->sendResponse(mode, addr, count);
|
|
#if EFI_TUNER_STUDIO_VERBOSE
|
|
// efiPrintf("Sending %d done", count);
|
|
#endif
|
|
}
|
|
|
|
void requestBurn(void) {
|
|
onBurnRequest(PASS_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
#if EFI_INTERNAL_FLASH
|
|
setNeedToWriteConfiguration();
|
|
#endif
|
|
}
|
|
|
|
static void sendResponseCode(ts_response_format_e mode, TsChannelBase *tsChannel, const uint8_t responseCode) {
|
|
if (mode == TS_CRC) {
|
|
tsChannel->writeCrcPacket(responseCode, nullptr, 0);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 'Burn' command is a command to commit the changes
|
|
*/
|
|
static void handleBurnCommand(TsChannelBase* tsChannel, ts_response_format_e mode) {
|
|
efitimems_t nowMs = currentTimeMillis();
|
|
tsState.burnCommandCounter++;
|
|
|
|
efiPrintf("got B (Burn) %s", mode == TS_PLAIN ? "plain" : "CRC");
|
|
|
|
// Skip the burn if a preset was just loaded - we don't want to overwrite it
|
|
if (!rebootForPresetPending) {
|
|
#if !defined(EFI_NO_CONFIG_WORKING_COPY)
|
|
memcpy(&persistentState.persistentConfiguration, &configWorkingCopy, sizeof(persistent_config_s));
|
|
#endif /* EFI_NO_CONFIG_WORKING_COPY */
|
|
|
|
requestBurn();
|
|
}
|
|
|
|
sendResponseCode(mode, tsChannel, TS_RESPONSE_BURN_OK);
|
|
efiPrintf("BURN in %dms", currentTimeMillis() - nowMs);
|
|
}
|
|
|
|
static bool isKnownCommand(char 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_CHUNK_WRITE_COMMAND || command == TS_EXECUTE
|
|
|| command == TS_IO_TEST_COMMAND
|
|
|| command == TS_GET_STRUCT
|
|
|| command == TS_SET_LOGGER_SWITCH
|
|
|| command == TS_GET_LOGGER_GET_BUFFER
|
|
|| command == TS_GET_COMPOSITE_BUFFER_DONE_DIFFERENTLY
|
|
|| command == TS_GET_TEXT
|
|
|| command == TS_CRC_CHECK_COMMAND
|
|
|| command == TS_GET_FIRMWARE_VERSION
|
|
|| command == TS_PERF_TRACE_BEGIN
|
|
|| command == TS_PERF_TRACE_GET_BUFFER
|
|
|| command == TS_GET_CONFIG_ERROR;
|
|
}
|
|
|
|
TunerStudio tsInstance;
|
|
|
|
static int tsProcessOne(TsChannelBase* tsChannel) {
|
|
validateStack("communication", STACK_USAGE_COMMUNICATION, 128);
|
|
|
|
if (!tsChannel->isReady()) {
|
|
chThdSleepMilliseconds(10);
|
|
return -1;
|
|
}
|
|
|
|
tsState.totalCounter++;
|
|
|
|
uint8_t firstByte;
|
|
int received = tsChannel->readTimeout(&firstByte, 1, TS_COMMUNICATION_TIMEOUT);
|
|
#if EFI_SIMULATOR
|
|
logMsg("received %d\r\n", received);
|
|
#endif
|
|
|
|
if (received != 1) {
|
|
// tunerStudioError("ERROR: no command");
|
|
#if EFI_BLUETOOTH_SETUP
|
|
// assume there's connection loss and notify the bluetooth init code
|
|
bluetoothSoftwareDisconnectNotify();
|
|
#endif /* EFI_BLUETOOTH_SETUP */
|
|
return -1;
|
|
}
|
|
|
|
if (handlePlainCommand(tsChannel, firstByte)) {
|
|
return -1;
|
|
}
|
|
|
|
uint8_t secondByte;
|
|
received = tsChannel->readTimeout(&secondByte, 1, TS_COMMUNICATION_TIMEOUT);
|
|
if (received != 1) {
|
|
tunerStudioError("TS: ERROR: no second byte");
|
|
return -1;
|
|
}
|
|
|
|
uint16_t incomingPacketSize = firstByte << 8 | secondByte;
|
|
|
|
if (incomingPacketSize == 0 || incomingPacketSize > (sizeof(tsChannel->scratchBuffer) - CRC_WRAPPING_SIZE)) {
|
|
efiPrintf("TunerStudio: invalid size: %d", incomingPacketSize);
|
|
tunerStudioError("ERROR: CRC header size");
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNDERRUN);
|
|
return -1;
|
|
}
|
|
|
|
received = tsChannel->readTimeout((uint8_t* )tsChannel->scratchBuffer, 1, TS_COMMUNICATION_TIMEOUT);
|
|
if (received != 1) {
|
|
tunerStudioError("ERROR: did not receive command");
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNDERRUN);
|
|
return -1;
|
|
}
|
|
|
|
char command = tsChannel->scratchBuffer[0];
|
|
if (!isKnownCommand(command)) {
|
|
efiPrintf("unexpected command %x", command);
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNRECOGNIZED_COMMAND);
|
|
return -1;
|
|
}
|
|
|
|
#if EFI_SIMULATOR
|
|
logMsg("command %c\r\n", command);
|
|
#endif
|
|
|
|
int expectedSize = incomingPacketSize + CRC_VALUE_SIZE - 1;
|
|
received = tsChannel->readTimeout((uint8_t*)(tsChannel->scratchBuffer + 1), expectedSize, TS_COMMUNICATION_TIMEOUT);
|
|
if (received != expectedSize) {
|
|
efiPrintf("Got only %d bytes while expecting %d for command %c", received,
|
|
expectedSize, command);
|
|
tunerStudioError("ERROR: not enough bytes in stream");
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNDERRUN);
|
|
return -1;
|
|
}
|
|
|
|
uint32_t expectedCrc = *(uint32_t*) (tsChannel->scratchBuffer + incomingPacketSize);
|
|
|
|
expectedCrc = SWAP_UINT32(expectedCrc);
|
|
|
|
uint32_t actualCrc = crc32(tsChannel->scratchBuffer, incomingPacketSize);
|
|
if (actualCrc != expectedCrc) {
|
|
efiPrintf("TunerStudio: CRC %x %x %x %x", tsChannel->scratchBuffer[incomingPacketSize + 0],
|
|
tsChannel->scratchBuffer[incomingPacketSize + 1], tsChannel->scratchBuffer[incomingPacketSize + 2],
|
|
tsChannel->scratchBuffer[incomingPacketSize + 3]);
|
|
|
|
efiPrintf("TunerStudio: command %c actual CRC %x/expected %x", tsChannel->scratchBuffer[0],
|
|
actualCrc, expectedCrc);
|
|
tunerStudioError("ERROR: CRC issue");
|
|
sendErrorCode(tsChannel, TS_RESPONSE_CRC_FAILURE);
|
|
return -1;
|
|
}
|
|
|
|
int success = tsInstance.handleCrcCommand(tsChannel, tsChannel->scratchBuffer, incomingPacketSize);
|
|
|
|
if (!success) {
|
|
efiPrintf("got unexpected TunerStudio command %x:%c", command, command);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void TunerstudioThread::ThreadTask() {
|
|
auto channel = setupChannel();
|
|
|
|
// No channel configured for this thread, cancel.
|
|
if (!channel || !channel->isConfigured()) {
|
|
return;
|
|
}
|
|
|
|
// Until the end of time, process incoming messages.
|
|
while(true) {
|
|
if (tsProcessOne(channel) == 0)
|
|
onDataArrived(true);
|
|
else
|
|
onDataArrived(false);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Copy real configuration into the communications layer working copy
|
|
*/
|
|
void syncTunerStudioCopy(void) {
|
|
#if !defined(EFI_NO_CONFIG_WORKING_COPY)
|
|
memcpy(&configWorkingCopy, &persistentState.persistentConfiguration, sizeof(persistent_config_s));
|
|
#endif /* EFI_NO_CONFIG_WORKING_COPY */
|
|
}
|
|
|
|
tunerstudio_counters_s tsState;
|
|
TunerStudioOutputChannels tsOutputChannels;
|
|
|
|
void tunerStudioError(const char *msg) {
|
|
tunerStudioDebug(msg);
|
|
printErrorCounters();
|
|
tsState.errorCounter++;
|
|
}
|
|
|
|
/**
|
|
* Query with CRC takes place while re-establishing connection
|
|
* Query without CRC takes place on TunerStudio startup
|
|
*/
|
|
void handleQueryCommand(TsChannelBase* tsChannel, ts_response_format_e mode) {
|
|
tsState.queryCommandCounter++;
|
|
#if EFI_TUNER_STUDIO_VERBOSE
|
|
efiPrintf("got S/H (queryCommand) mode=%d", mode);
|
|
printTsStats();
|
|
#endif
|
|
const char *signature = getTsSignature();
|
|
tsChannel->sendResponse(mode, (const uint8_t *)signature, strlen(signature) + 1);
|
|
}
|
|
|
|
/**
|
|
* rusEfi own test command
|
|
*/
|
|
static void handleTestCommand(TsChannelBase* tsChannel) {
|
|
tsState.testCommandCounter++;
|
|
static char testOutputBuffer[64];
|
|
/**
|
|
* this is NOT a standard TunerStudio command, this is my own
|
|
* extension of the protocol to simplify troubleshooting
|
|
*/
|
|
tunerStudioDebug("got T (Test)");
|
|
tsChannel->write((const uint8_t*)VCS_VERSION, sizeof(VCS_VERSION));
|
|
|
|
chsnprintf(testOutputBuffer, sizeof(testOutputBuffer), " %d %d", engine->engineState.warnings.lastErrorCode, tsState.testCommandCounter);
|
|
tsChannel->write((const uint8_t*)testOutputBuffer, strlen(testOutputBuffer));
|
|
|
|
chsnprintf(testOutputBuffer, sizeof(testOutputBuffer), " uptime=%ds", getTimeNowSeconds());
|
|
tsChannel->write((const uint8_t*)testOutputBuffer, strlen(testOutputBuffer));
|
|
|
|
chsnprintf(testOutputBuffer, sizeof(testOutputBuffer), " %s\r\n", PROTOCOL_TEST_RESPONSE_TAG);
|
|
tsChannel->write((const uint8_t*)testOutputBuffer, strlen(testOutputBuffer));
|
|
|
|
if (hasFirmwareError()) {
|
|
const char* error = getFirmwareError();
|
|
chsnprintf(testOutputBuffer, sizeof(testOutputBuffer), "error=%s\r\n", error);
|
|
tsChannel->write((const uint8_t*)testOutputBuffer, strlen(testOutputBuffer));
|
|
}
|
|
}
|
|
|
|
extern CommandHandler console_line_callback;
|
|
|
|
static void handleGetVersion(TsChannelBase* tsChannel) {
|
|
static char versionBuffer[32];
|
|
chsnprintf(versionBuffer, sizeof(versionBuffer), "rusEFI v%d@%s", getRusEfiVersion(), VCS_VERSION);
|
|
tsChannel->sendResponse(TS_CRC, (const uint8_t *) versionBuffer, strlen(versionBuffer) + 1);
|
|
}
|
|
|
|
#if EFI_TEXT_LOGGING
|
|
static void handleGetText(TsChannelBase* tsChannel) {
|
|
tsState.textCommandCounter++;
|
|
|
|
printOverallStatus(getTimeNowSeconds());
|
|
|
|
size_t outputSize;
|
|
const char* output = swapOutputBuffers(&outputSize);
|
|
#if EFI_SIMULATOR
|
|
logMsg("get test sending [%d]\r\n", outputSize);
|
|
#endif
|
|
|
|
tsChannel->writeCrcPacket(TS_RESPONSE_COMMAND_OK, reinterpret_cast<const uint8_t*>(output), outputSize);
|
|
#if EFI_SIMULATOR
|
|
logMsg("sent [%d]\r\n", outputSize);
|
|
#endif
|
|
}
|
|
#endif // EFI_TEXT_LOGGING
|
|
|
|
static void handleExecuteCommand(TsChannelBase* tsChannel, char *data, int incomingPacketSize) {
|
|
data[incomingPacketSize] = 0;
|
|
char *trimmed = efiTrim(data);
|
|
#if EFI_SIMULATOR
|
|
logMsg("execute [%s]\r\n", trimmed);
|
|
#endif
|
|
(console_line_callback)(trimmed);
|
|
|
|
tsChannel->writeCrcPacket(TS_RESPONSE_COMMAND_OK, nullptr, 0);
|
|
}
|
|
|
|
/**
|
|
* @return true if legacy command was processed, false otherwise
|
|
*/
|
|
bool handlePlainCommand(TsChannelBase* tsChannel, uint8_t command) {
|
|
// Bail fast if guaranteed not to be a plain command
|
|
if (command == 0)
|
|
{
|
|
return false;
|
|
}
|
|
else if (command == TS_HELLO_COMMAND) {
|
|
efiPrintf("Got naked Query command");
|
|
handleQueryCommand(tsChannel, TS_PLAIN);
|
|
return true;
|
|
} else if (command == TS_TEST_COMMAND || command == 'T') {
|
|
handleTestCommand(tsChannel);
|
|
return true;
|
|
} else if (command == TS_COMMAND_F) {
|
|
/**
|
|
* http://www.msextra.com/forums/viewtopic.php?f=122&t=48327
|
|
* Response from TS support: This is an optional command *
|
|
* "The F command is used to find what ini. file needs to be loaded in TunerStudio to match the controller.
|
|
* If you are able to just make your firmware ignore the command that would work.
|
|
* Currently on some firmware versions the F command is not used and is just ignored by the firmware as a unknown command."
|
|
*/
|
|
|
|
tunerStudioDebug("not ignoring F");
|
|
tsChannel->write((const uint8_t *)TS_PROTOCOL, strlen(TS_PROTOCOL));
|
|
return true;
|
|
} else {
|
|
// This wasn't a valid command
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static int transmitted = 0;
|
|
|
|
int TunerStudioBase::handleCrcCommand(TsChannelBase* tsChannel, char *data, int incomingPacketSize) {
|
|
ScopePerf perf(PE::TunerStudioHandleCrcCommand);
|
|
|
|
char command = data[0];
|
|
data++;
|
|
|
|
const uint16_t* data16 = reinterpret_cast<uint16_t*>(data);
|
|
|
|
uint16_t offset = data16[0];
|
|
uint16_t count = data16[1];
|
|
|
|
switch(command)
|
|
{
|
|
case TS_OUTPUT_COMMAND:
|
|
cmdOutputChannels(tsChannel, offset, count);
|
|
break;
|
|
case TS_HELLO_COMMAND:
|
|
tunerStudioDebug("got Query command");
|
|
handleQueryCommand(tsChannel, TS_CRC);
|
|
break;
|
|
case TS_GET_FIRMWARE_VERSION:
|
|
handleGetVersion(tsChannel);
|
|
break;
|
|
#if EFI_TEXT_LOGGING
|
|
case TS_GET_TEXT:
|
|
handleGetText(tsChannel);
|
|
break;
|
|
#endif // EFI_TEXT_LOGGING
|
|
case TS_EXECUTE:
|
|
handleExecuteCommand(tsChannel, data, incomingPacketSize - 1);
|
|
break;
|
|
case TS_PAGE_COMMAND:
|
|
handlePageSelectCommand(tsChannel, TS_CRC);
|
|
break;
|
|
case TS_GET_STRUCT:
|
|
handleGetStructContent(tsChannel, offset, count);
|
|
break;
|
|
case TS_CHUNK_WRITE_COMMAND:
|
|
handleWriteChunkCommand(tsChannel, TS_CRC, offset, count, data + sizeof(TunerStudioWriteChunkRequest));
|
|
break;
|
|
case TS_SINGLE_WRITE_COMMAND:
|
|
{
|
|
uint8_t value = data[4];
|
|
handleWriteValueCommand(tsChannel, TS_CRC, offset, value);
|
|
}
|
|
break;
|
|
case TS_CRC_CHECK_COMMAND:
|
|
handleCrc32Check(tsChannel, TS_CRC, offset, count);
|
|
break;
|
|
case TS_BURN_COMMAND:
|
|
handleBurnCommand(tsChannel, TS_CRC);
|
|
break;
|
|
case TS_READ_COMMAND:
|
|
handlePageReadCommand(tsChannel, TS_CRC, offset, count);
|
|
break;
|
|
case TS_TEST_COMMAND:
|
|
[[fallthrough]];
|
|
case 'T':
|
|
handleTestCommand(tsChannel);
|
|
break;
|
|
case TS_IO_TEST_COMMAND:
|
|
{
|
|
uint16_t subsystem = SWAP_UINT16(data16[0]);
|
|
uint16_t index = SWAP_UINT16(data16[1]);
|
|
|
|
if (engineConfiguration->debugMode == DBG_BENCH_TEST) {
|
|
tsOutputChannels.debugIntField1++;
|
|
tsOutputChannels.debugIntField2 = subsystem;
|
|
tsOutputChannels.debugIntField3 = index;
|
|
}
|
|
|
|
#if EFI_PROD_CODE && EFI_ENGINE_CONTROL
|
|
executeTSCommand(subsystem, index);
|
|
#endif /* EFI_PROD_CODE */
|
|
sendOkResponse(tsChannel, TS_CRC);
|
|
}
|
|
break;
|
|
#if EFI_TOOTH_LOGGER
|
|
case TS_SET_LOGGER_SWITCH:
|
|
switch(data[0]) {
|
|
case TS_COMPOSITE_ENABLE:
|
|
EnableToothLogger();
|
|
break;
|
|
case TS_COMPOSITE_DISABLE:
|
|
DisableToothLogger();
|
|
break;
|
|
default:
|
|
// dunno what that was, send NAK
|
|
return false;
|
|
}
|
|
|
|
sendOkResponse(tsChannel, TS_CRC);
|
|
|
|
break;
|
|
case TS_GET_COMPOSITE_BUFFER_DONE_DIFFERENTLY:
|
|
|
|
{
|
|
EnableToothLoggerIfNotEnabled();
|
|
const uint8_t* const buffer = GetToothLoggerBuffer().Buffer;
|
|
|
|
const uint8_t* const start = buffer + COMPOSITE_PACKET_SIZE * transmitted;
|
|
|
|
int currentEnd = getCompositeRecordCount();
|
|
|
|
// set debug_mode 40
|
|
if (engineConfiguration->debugMode == DBG_COMPOSITE_LOG) {
|
|
tsOutputChannels.debugIntField1 = currentEnd;
|
|
tsOutputChannels.debugIntField2 = transmitted;
|
|
|
|
}
|
|
|
|
if (currentEnd > transmitted) {
|
|
// more normal case - tail after head
|
|
tsChannel->sendResponse(TS_CRC, start, COMPOSITE_PACKET_SIZE * (currentEnd - transmitted));
|
|
transmitted = currentEnd;
|
|
} else if (currentEnd == transmitted) {
|
|
tsChannel->sendResponse(TS_CRC, start, 0);
|
|
} else {
|
|
// we are here if tail of buffer has reached the end of buffer and re-started from the start of buffer
|
|
// sending end of the buffer, next transmission would take care of the rest
|
|
tsChannel->sendResponse(TS_CRC, start, COMPOSITE_PACKET_SIZE * (COMPOSITE_PACKET_COUNT - transmitted));
|
|
transmitted = 0;
|
|
}
|
|
}
|
|
break;
|
|
case TS_GET_LOGGER_GET_BUFFER:
|
|
{
|
|
auto toothBuffer = GetToothLoggerBuffer();
|
|
tsChannel->sendResponse(TS_CRC, toothBuffer.Buffer, toothBuffer.Length);
|
|
}
|
|
|
|
break;
|
|
#endif /* EFI_TOOTH_LOGGER */
|
|
#if ENABLE_PERF_TRACE
|
|
case TS_PERF_TRACE_BEGIN:
|
|
perfTraceEnable();
|
|
sendOkResponse(tsChannel, TS_CRC);
|
|
break;
|
|
case TS_PERF_TRACE_GET_BUFFER:
|
|
{
|
|
auto trace = perfTraceGetBuffer();
|
|
tsChannel->sendResponse(TS_CRC, trace.Buffer, trace.Size);
|
|
}
|
|
|
|
break;
|
|
#endif /* ENABLE_PERF_TRACE */
|
|
case TS_GET_CONFIG_ERROR: {
|
|
const char* configError = getFirmwareError();
|
|
#if HW_CHECK_MODE
|
|
// analog input errors are returned as firmware error in QC mode
|
|
if (!hasFirmwareError()) {
|
|
strcpy((char*)configError, "FACTORY_MODE_PLEASE_CONTACT_SUPPORT");
|
|
}
|
|
#endif // HW_CHECK_MODE
|
|
tsChannel->sendResponse(TS_CRC, reinterpret_cast<const uint8_t*>(configError), strlen(configError));
|
|
break;
|
|
}
|
|
default:
|
|
sendErrorCode(tsChannel, TS_RESPONSE_UNRECOGNIZED_COMMAND);
|
|
tunerStudioError("ERROR: ignoring unexpected command");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void startTunerStudioConnectivity(void) {
|
|
// Assert tune & output channel struct sizes
|
|
static_assert(sizeof(persistent_config_s) == TOTAL_CONFIG_SIZE, "TS datapage size mismatch");
|
|
static_assert(sizeof(TunerStudioOutputChannels) == TS_OUTPUT_SIZE, "TS output channels size mismatch");
|
|
// useful trick if you need to know how far off is the static_assert
|
|
// char (*__kaboom)[sizeof(persistent_config_s)] = 1;
|
|
|
|
memset(&tsState, 0, sizeof(tsState));
|
|
syncTunerStudioCopy();
|
|
|
|
addConsoleAction("tsinfo", printTsStats);
|
|
addConsoleAction("reset_ts", resetTs);
|
|
addConsoleActionI("set_ts_speed", setTsSpeed);
|
|
|
|
#if EFI_BLUETOOTH_SETUP
|
|
// Usage: "bluetooth_hc06 <baud> <name> <pincode>"
|
|
// Example: "bluetooth_hc06 38400 rusefi 1234"
|
|
addConsoleActionSSS("bluetooth_hc05", bluetoothHC05);
|
|
addConsoleActionSSS("bluetooth_hc06", bluetoothHC06);
|
|
addConsoleActionSSS("bluetooth_spp", bluetoothSPP);
|
|
addConsoleAction("bluetooth_cancel", bluetoothCancel);
|
|
#endif /* EFI_BLUETOOTH_SETUP */
|
|
}
|
|
|
|
#endif
|