ToCoNet_Nwk_bStart()

Explanation

Starts the RelayNet.

The E_EVENT_TOCONET_NWK_START event is received after the network starts.

Argument

TypeNameRemark

pContextNwk

A structure that manages the internal information of the relay network.

Returns

TypeRemark

bool_t

TRUE: Success, FALSE: Fail

Sample code

static tsToCoNet_NwkLyTr_Config sNwkLayerTreeConfig;
static tsToCoNet_Nwk_Context* pContextNwk;
...
			pContextNwk =
				ToCoNet_NwkLyTr_psConfig(&sNwkLayerTreeConfig);
			if (pContextNwk) {
				ToCoNet_Nwk_bInit(pContextNwk);
				ToCoNet_Nwk_bStart(pContextNwk);
			}

最終更新