blob: 98adc615a8793462d9c95695d173dca59ec1b58f [file] [log] [blame]
/*
*
* Copyright (c) 2020 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** @file "main.cpp"
*
* Main application.
*/
/*****************************************************************************
* Includes Definitions
*****************************************************************************/
// FreeRTOS
#include "FreeRTOS.h"
#include "task.h"
// Qorvo CHIP library
#include "qvCHIP.h"
// CHIP includes
#include <app/server/Dnssd.h>
#include <lib/support/CHIPMem.h>
#include <lib/support/CHIPPlatformMemory.h>
#include <lib/support/logging/CHIPLogging.h>
#include <platform/CHIPDeviceLayer.h>
// Application level logic
#include "AppTask.h"
using namespace ::chip;
using namespace ::chip::Inet;
using namespace ::chip::DeviceLayer;
using namespace ::chip::DeviceLayer::Internal;
namespace {
constexpr int extDiscTimeoutSecs = 20;
}
/*****************************************************************************
* Macro Definitions
*****************************************************************************/
/*****************************************************************************
* External Function Definitions
*****************************************************************************/
/*****************************************************************************
* Application Function Definitions
*****************************************************************************/
int Application_Init(void)
{
/* Launch application task */
ChipLogProgress(NotSpecified, "============================");
ChipLogProgress(NotSpecified, "Qorvo " APP_NAME " Launching");
ChipLogProgress(NotSpecified, "============================");
CHIP_ERROR ret = GetAppTask().StartAppTask();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "GetAppTask().Init() failed");
return -1;
}
return 0;
}
CHIP_ERROR CHIP_Init(void)
{
CHIP_ERROR ret = chip::Platform::MemoryInit();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "Platform::MemoryInit() failed");
goto exit;
}
ChipLogProgress(NotSpecified, "Init CHIP Stack");
ret = PlatformMgr().InitChipStack();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "PlatformMgr().InitChipStack() failed");
goto exit;
}
#if CHIP_ENABLE_OPENTHREAD
ChipLogProgress(NotSpecified, "Initializing OpenThread stack");
ret = ThreadStackMgr().InitThreadStack();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "ThreadStackMgr().InitThreadStack() failed");
goto exit;
}
#if CHIP_DEVICE_CONFIG_THREAD_FTD
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_Router);
#else
ret = ConnectivityMgr().SetThreadDeviceType(ConnectivityManager::kThreadDeviceType_MinimalEndDevice);
#endif
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "ConnectivityMgr().SetThreadDeviceType() failed");
goto exit;
}
ChipLogProgress(NotSpecified, "Starting OpenThread task");
ret = ThreadStackMgrImpl().StartThreadTask();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "ThreadStackMgr().StartThreadTask() failed");
goto exit;
}
#endif // CHIP_ENABLE_OPENTHREAD
#if CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY
chip::app::DnssdServer::Instance().SetExtendedDiscoveryTimeoutSecs(extDiscTimeoutSecs);
#endif
ChipLogProgress(NotSpecified, "Starting Platform Manager Event Loop");
ret = PlatformMgr().StartEventLoopTask();
if (ret != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "PlatformMgr().StartEventLoopTask() failed");
goto exit;
}
exit:
return ret;
}
/*****************************************************************************
* --- Main
*****************************************************************************/
int main(void)
{
int result;
CHIP_ERROR error;
/* Initialize Qorvo stack */
result = qvCHIP_init();
if (result < 0)
{
goto exit;
}
/* Initialize CHIP stack */
error = CHIP_Init();
if (error != CHIP_NO_ERROR)
{
goto exit;
}
/* Application task */
result = Application_Init();
if (result < 0)
{
goto exit;
}
/* Start FreeRTOS */
vTaskStartScheduler();
exit:
return 0;
}