Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/TandDSsp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ CcspTandDSsp_CPPFLAGS += -I$(top_srcdir)/source/DevicePrioritization/TR-181
CcspTandDSsp_CFLAGS = $(DEVICE_PRIORITIZATION_CFLAGS)
endif

CcspTandDSsp_SOURCES = tad_rbus_apis.c ssp_messagebus_interface.c ssp_action_priv.c ssp_main.c ssp_action.c ssp_messagebus_interface_priv.c dm_pack_datamodel.c current_time.c
CcspTandDSsp_LDFLAGS = -lccsp_common -ldl -rdynamic -lrbus -lsyscfg -lsecure_wrapper -ltelemetry_msgsender
CcspTandDSsp_SOURCES = tad_rbus_apis.c ssp_messagebus_interface.c ssp_action_priv.c ssp_main.c ssp_action.c ssp_messagebus_interface_priv.c dm_pack_datamodel.c current_time.c webcfg_selfheal.c
CcspTandDSsp_LDFLAGS = -lccsp_common -ldl -rdynamic -lrbus -lsyscfg -lsecure_wrapper -ltelemetry_msgsender -lcjson

CcspTandDSsp_DEPENDENCIES = ${top_builddir}/source/LatencyMeasurement/TR-181/libLowLatency.la \
${top_builddir}/source/LatencyMeasurement/ServiceMonitor/libCcspTandDSsp_ServiceMonitor.la
Expand Down
9 changes: 7 additions & 2 deletions source/TandDSsp/ssp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
#include "lowlatency_apis.h"
#include "current_time.h"
#include <telemetry_busmessage_sender.h>
#include "webcfg_selfheal.h"

#ifdef DEVICE_PRIORITIZATION_ENABLED
#include "device_prio_apis.h"
Expand Down Expand Up @@ -365,10 +366,14 @@ int main(int argc, char* argv[])
/* Init TAD Rbus */
tadRbusInit();

// Init LatencyMeasurent
// Init LatencyMeasurement
LatencyMeasurementInit();

//crate a thread to update time thread for ethwan enable mode
// SelfHeal Subdoc Version Mismatch
initWebcfgProperties(WEBCFG_PROPERTIES_FILE);
webcfg_subdoc_mismatch_boot_check();

//create a thread to update time thread for ethwan enable mode
BOOL ethwanEnabled = FALSE;
ethwanEnabled = IsEthWanEnabled();
#ifdef RDKB_EXTENDER_ENABLED
Expand Down
Loading
Loading