auto-sync
This commit is contained in:
parent
a8772b1f8a
commit
e963340258
|
@ -710,6 +710,7 @@ int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomin
|
||||||
static uint8_t tsCrcWriteBuffer[300];
|
static uint8_t tsCrcWriteBuffer[300];
|
||||||
|
|
||||||
void startTunerStudioConnectivity(Logging *sharedLogger) {
|
void startTunerStudioConnectivity(Logging *sharedLogger) {
|
||||||
|
efiAssertVoid(sharedLogger!=NULL, "tsLogger");
|
||||||
tsLogger = sharedLogger;
|
tsLogger = sharedLogger;
|
||||||
|
|
||||||
if (sizeof(engine_configuration_s) != getTunerStudioPageSize(0))
|
if (sizeof(engine_configuration_s) != getTunerStudioPageSize(0))
|
||||||
|
|
|
@ -125,6 +125,9 @@ void WaveChart::publishChartIfFull() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WaveChart::WaveChart() {
|
||||||
|
}
|
||||||
|
|
||||||
void WaveChart::init() {
|
void WaveChart::init() {
|
||||||
initLoggingExt(&logging, "wave chart", WAVE_LOGGING_BUFFER, sizeof(WAVE_LOGGING_BUFFER));
|
initLoggingExt(&logging, "wave chart", WAVE_LOGGING_BUFFER, sizeof(WAVE_LOGGING_BUFFER));
|
||||||
isInitialized = TRUE;
|
isInitialized = TRUE;
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
*/
|
*/
|
||||||
class WaveChart {
|
class WaveChart {
|
||||||
public:
|
public:
|
||||||
|
WaveChart();
|
||||||
void init();
|
void init();
|
||||||
void publishChart();
|
void publishChart();
|
||||||
void resetWaveChart();
|
void resetWaveChart();
|
||||||
|
|
Loading…
Reference in New Issue