/* * * Copyright (c) 2023 Project CHIP Authors * Copyright (c) 2020 Texas Instruments Incorporated * 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. */ #include "AppTask.h" #include "AppConfig.h" #include "AppEvent.h" #include #include #include #include #include "FreeRTOS.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* syscfg */ #include #include extern "C" { extern int WiFi_init(); extern void DisplayBanner(); } #define APP_TASK_STACK_SIZE (4096) #define APP_TASK_PRIORITY 4 #define APP_EVENT_QUEUE_SIZE 10 #define AIR_PURIFIER_ENDPOINT 1 #define AIR_QUALITY_SENSOR_ENDPOINT 2 #define TEMPERATURE_SENSOR_ENDPOINT 3 #define RELATIVE_HUMIDITY_SENSOR_ENDPOINT 4 #define THERMOSTAT_ENDPOINT 5 // Added the below three for DNS Server Initialization using namespace ::chip; using namespace ::chip::Inet; using namespace ::chip::System; using namespace ::chip::Credentials; using namespace ::chip::DeviceLayer; using namespace ::chip::DeviceManager; using namespace chip::app; using namespace chip::app::Clusters; static TaskHandle_t sAppTaskHandle; static QueueHandle_t sAppEventQueue; extern LED_Handle gLedGreenHandle, gLedRedHandle; static Button_Handle gButtonRightHandle; AppTask AppTask::sAppTask; static DeviceCallbacks EchoCallbacks; int AppTask::StartAppTask() { int ret = 0; sAppEventQueue = xQueueCreate(APP_EVENT_QUEUE_SIZE, sizeof(AppEvent)); if (sAppEventQueue == NULL) { PLAT_LOG("Failed to allocate app event queue"); while (true) ; } // Start App task. if (xTaskCreate(AppTaskMain, "APP", APP_TASK_STACK_SIZE / sizeof(StackType_t), NULL, APP_TASK_PRIORITY, &sAppTaskHandle) != pdPASS) { PLAT_LOG("Failed to create app task"); while (true) ; } return ret; } int AppTask::Init() { CHIP_ERROR ret; LED_Params ledParams; Button_Params buttonParams; cc32xxLogInit(); /* Initial Terminal, and print Application name */ DisplayBanner(); // Init Chip memory management before the stack PLAT_LOG("Initialize Memory"); chip::Platform::MemoryInit(); // Initialize LEDs PLAT_LOG("Initialize LEDs"); LED_init(); LED_Params_init(&ledParams); // default PWM LED gLedRedHandle = LED_open(CONFIG_LED_RED, &ledParams); LED_setOff(gLedRedHandle); LED_Params_init(&ledParams); // default PWM LED gLedGreenHandle = LED_open(CONFIG_LED_GREEN, &ledParams); LED_setOff(gLedGreenHandle); // Initialize buttons PLAT_LOG("Initialize buttons"); Button_init(); Button_Params_init(&buttonParams); buttonParams.buttonEventMask = Button_EV_CLICKED | Button_EV_LONGCLICKED; buttonParams.longPressDuration = 1000U; // ms gButtonRightHandle = Button_open(CONFIG_BTN_RIGHT, &buttonParams); Button_setCallback(gButtonRightHandle, ButtonRightEventHandler); PLAT_LOG("Initialize Wi-Fi"); WiFi_init(); PLAT_LOG("Initialize CHIP stack"); ret = PlatformMgr().InitChipStack(); if (ret != CHIP_NO_ERROR) { PLAT_LOG("PlatformMgr().InitChipStack() failed"); while (true) ; } // Init ZCL Data Model and start server PLAT_LOG("Initialize Server"); static chip::CommonCaseDeviceServerInitParams initParams; (void) initParams.InitializeStaticResourcesBeforeServerInit(); chip::Server::GetInstance().Init(initParams); // Initialize device attestation config PLAT_LOG("Initialize device attestation config"); #ifdef CC32XX_ATTESTATION_CREDENTIALS SetDeviceAttestationCredentialsProvider(CC32XX::GetCC32XXDacProvider()); #else SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider()); #endif // init air purifier stuff SetParentEndpointForEndpoint(AIR_QUALITY_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); SetParentEndpointForEndpoint(TEMPERATURE_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); SetParentEndpointForEndpoint(RELATIVE_HUMIDITY_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); SetParentEndpointForEndpoint(THERMOSTAT_ENDPOINT, AIR_PURIFIER_ENDPOINT); AirPurifierManager::InitInstance(EndpointId(AIR_PURIFIER_ENDPOINT), EndpointId(AIR_QUALITY_SENSOR_ENDPOINT), EndpointId(TEMPERATURE_SENSOR_ENDPOINT), EndpointId(RELATIVE_HUMIDITY_SENSOR_ENDPOINT), EndpointId(THERMOSTAT_ENDPOINT)); ConfigurationMgr().LogDeviceConfig(); // QR code will be used with CHIP Tool PLAT_LOG("Print Onboarding Codes"); PrintOnboardingCodes(chip::RendezvousInformationFlags(chip::RendezvousInformationFlag::kOnNetwork)); PLAT_LOG("Start CHIPDeviceManager and Start Event Loop Task"); CHIPDeviceManager & deviceMgr = CHIPDeviceManager::GetInstance(); ret = deviceMgr.Init(&EchoCallbacks); if (ret != CHIP_NO_ERROR) { PLAT_LOG("CHIPDeviceManager::Init() failed: %s", ErrorStr(ret)); while (1) ; } return 0; } void AppTask::AppTaskMain(void * pvParameter) { AppEvent event; sAppTask.Init(); while (true) { /* Task pend until we have stuff to do */ if (xQueueReceive(sAppEventQueue, &event, portMAX_DELAY) == pdTRUE) { sAppTask.DispatchEvent(&event); } } } void AppTask::ButtonRightEventHandler(Button_Handle handle, Button_EventMask events) { AppEvent event; event.Type = AppEvent::kEventType_ButtonRight; if (events & Button_EV_CLICKED) { event.ButtonEvent.Type = AppEvent::kAppEventButtonType_Clicked; } else if (events & Button_EV_LONGCLICKED) { event.ButtonEvent.Type = AppEvent::kAppEventButtonType_LongClicked; } // button callbacks are in ISR context if (xQueueSendFromISR(sAppEventQueue, &event, NULL) != pdPASS) { /* Failed to post the message */ } } void AppTask::PostEvent(const AppEvent * aEvent) { if (xQueueSend(sAppEventQueue, aEvent, 0) != pdPASS) { /* Failed to post the message */ } } // need to define custom tokens to read/write files from the file system #define KVS_TOKEN 0x13578642 void AppTask::DispatchEvent(AppEvent * aEvent) { switch (aEvent->Type) { case AppEvent::kEventType_ButtonRight: if (AppEvent::kAppEventButtonType_Clicked == aEvent->ButtonEvent.Type) { PLAT_LOG("DispatchEvent: kEventType_ButtonRight: kAppEventButtonType_Clicked"); } if (AppEvent::kAppEventButtonType_LongClicked == aEvent->ButtonEvent.Type) { // delete the kvs.cfg file and reset the matter part of the device PLAT_LOG("DispatchEvent: kEventType_ButtonRight: LONG clicked - clearing KVS"); uint32_t token = KVS_TOKEN; const unsigned char listName[] = "/sys/matter/kvs.cfg"; sl_FsDel(listName, token); } break; case AppEvent::kEventType_AppEvent: if (NULL != aEvent->Handler) { // XXX: assume our caller isn't trying to crash our stack aEvent->Handler(aEvent); } break; case AppEvent::kEventType_None: default: break; } }