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];
|
||||
|
||||
void startTunerStudioConnectivity(Logging *sharedLogger) {
|
||||
efiAssertVoid(sharedLogger!=NULL, "tsLogger");
|
||||
tsLogger = sharedLogger;
|
||||
|
||||
if (sizeof(engine_configuration_s) != getTunerStudioPageSize(0))
|
||||
|
|
|
@ -125,6 +125,9 @@ void WaveChart::publishChartIfFull() {
|
|||
}
|
||||
}
|
||||
|
||||
WaveChart::WaveChart() {
|
||||
}
|
||||
|
||||
void WaveChart::init() {
|
||||
initLoggingExt(&logging, "wave chart", WAVE_LOGGING_BUFFER, sizeof(WAVE_LOGGING_BUFFER));
|
||||
isInitialized = TRUE;
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
class WaveChart {
|
||||
public:
|
||||
WaveChart();
|
||||
void init();
|
||||
void publishChart();
|
||||
void resetWaveChart();
|
||||
|
|
Loading…
Reference in New Issue