static tsToCoNet_NwkLyTr_Config sNwkLayerTreeConfig;
static tsToCoNet_Nwk_Context* pContextNwk;
...
// 始動時の処理
memset(&sNwkLayerTreeConfig, 0, sizeof(sNwkLayerTreeConfig));
sNwkLayerTreeConfig.u8Role =
TOCONET_NWK_ROLE_ENDDEVICE;
// ネットワークの初期化
pContextNwk =
ToCoNet_NwkLyTr_psConfig_MiniNodes(&sNwkLayerTreeConfig);
if (sAppData.pContextNwk) {
ToCoNet_Nwk_bInit(pContextNwk);
ToCoNet_Nwk_bStart(pContextNwk);
}