| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- *
- * Copyright (c) 2021 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.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include <FreeRTOS.h>
- #include <task.h>
- #include "KeyValueStorageTest.h"
- #include <platform/KeyValueStoreManager.h>
- #define APP_NAME "KVS-Test"
- #define APP_TASK_STACK_SIZE (3 * 1024)
- #define LOG_MODULE_ID 1
- namespace {
- StackType_t appStack[APP_TASK_STACK_SIZE / sizeof(StackType_t)];
- StaticTask_t appTaskStruct;
- } // namespace
- void TestTask(void * pvParameter)
- {
- while (true)
- {
- qvCHIP_Printf(LOG_MODULE_ID, "Running Tests:");
- chip::RunKvsTest();
- vTaskDelay(60000); // Run every minute
- }
- }
- void Application_Init(void)
- {
- /* Launch application task */
- qvCHIP_Printf(LOG_MODULE_ID, "============================");
- qvCHIP_Printf(LOG_MODULE_ID, "Qorvo " APP_NAME " Launching");
- qvCHIP_Printf(LOG_MODULE_ID, "============================");
- // Run tests
- xTaskCreateStatic(TestTask, APP_NAME, 2048, NULL, 1, appStack, &appTaskStruct);
- }
- int main(void)
- {
- int result;
- /* Initialize Qorvo stack */
- result = qvCHIP_init(Application_Init);
- if (result < 0)
- {
- goto exit;
- }
- qvCHIP_Printf(LOG_MODULE_ID, "Starting FreeRTOS scheduler");
- vTaskStartScheduler();
- // Should never get here.
- qvCHIP_Printf(LOG_MODULE_ID, "vTaskStartScheduler() failed");
- exit:
- return 0;
- }
|