89 lines
2.0 KiB
C++
89 lines
2.0 KiB
C++
/**
|
|
* @file tunerstudio.h
|
|
*
|
|
* @date Aug 26, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
#include "global.h"
|
|
#include "tunerstudio_io.h"
|
|
|
|
#if EFI_TUNER_STUDIO
|
|
#include "tunerstudio_outputs.h"
|
|
#include "thread_controller.h"
|
|
#include "thread_priority.h"
|
|
|
|
typedef struct {
|
|
int queryCommandCounter;
|
|
int outputChannelsCommandCounter;
|
|
int readPageCommandsCounter;
|
|
int burnCommandCounter;
|
|
int pageCommandCounter;
|
|
int writeValueCommandCounter;
|
|
int crc32CheckCommandCounter;
|
|
int writeChunkCommandCounter;
|
|
int errorCounter;
|
|
int totalCounter;
|
|
int textCommandCounter;
|
|
int testCommandCounter;
|
|
} tunerstudio_counters_s;
|
|
|
|
extern tunerstudio_counters_s tsState;
|
|
|
|
// SD protocol file removal is one of the stack consuming use-cases
|
|
#define CONNECTIVITY_THREAD_STACK (3 * UTILITY_THREAD_STACK_SIZE)
|
|
|
|
/**
|
|
* handle non CRC wrapped command
|
|
*/
|
|
bool handlePlainCommand(TsChannelBase* tsChannel, uint8_t command);
|
|
|
|
/**
|
|
* this command is part of protocol initialization
|
|
*/
|
|
void handleQueryCommand(TsChannelBase* tsChannel, ts_response_format_e mode);
|
|
|
|
char *getWorkingPageAddr();
|
|
|
|
void tunerStudioDebug(const char *msg);
|
|
void tunerStudioError(const char *msg);
|
|
|
|
void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_ENGINE_PARAMETER_SUFFIX);
|
|
void printTsStats(void);
|
|
void requestBurn(void);
|
|
|
|
void startTunerStudioConnectivity(void);
|
|
void syncTunerStudioCopy(void);
|
|
|
|
#if defined __GNUC__
|
|
// GCC
|
|
#define pre_packed
|
|
#define post_packed __attribute__((packed))
|
|
#else
|
|
// IAR
|
|
#define pre_packed __packed
|
|
#define post_packed
|
|
#endif
|
|
|
|
typedef pre_packed struct
|
|
post_packed {
|
|
short int offset;
|
|
short int count;
|
|
} TunerStudioWriteChunkRequest;
|
|
|
|
class TunerstudioThread : public ThreadController<CONNECTIVITY_THREAD_STACK> {
|
|
public:
|
|
TunerstudioThread(const char* name)
|
|
: ThreadController(name, PRIO_CONSOLE)
|
|
{
|
|
}
|
|
|
|
// Initialize and return the channel to use for this thread.
|
|
virtual TsChannelBase* setupChannel() = 0;
|
|
|
|
void ThreadTask() override;
|
|
};
|
|
|
|
#endif /* EFI_TUNER_STUDIO */
|