Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / persistent-storage / efr32 / main.cpp
1 /*
2  *
3  *    Copyright (c) 2021 Project CHIP Authors
4  *    All rights reserved.
5  *
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18
19 #include <bsp.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include <stdarg.h>
24 #include <stdbool.h>
25 #include <stdint.h>
26
27 #include <FreeRTOS.h>
28 #include <task.h>
29
30 #include "AppConfig.h"
31 #include "KeyValueStorageTest.h"
32 #include "init_efrPlatform.h"
33 #include <platform/KeyValueStoreManager.h>
34
35 static TaskHandle_t sTestTaskHandle;
36 void TestTask(void * pvParameter)
37 {
38     while (1)
39     {
40         EFR32_LOG("Running Tests:");
41         chip::RunKvsTest();
42         vTaskDelay(60000); // Run every minute
43     }
44 }
45
46 int main(void)
47 {
48     init_efrPlatform();
49
50     chip::DeviceLayer::PersistedStorage::KeyValueStoreMgrImpl().Init();
51     EFR32_LOG("==================================================");
52     EFR32_LOG("chip-efr32-persitent-storage-example starting");
53     EFR32_LOG("==================================================");
54
55     // Run tests
56     xTaskCreate(TestTask, "Test", 2048, NULL, 1, &sTestTaskHandle);
57     EFR32_LOG("Starting FreeRTOS scheduler");
58     vTaskStartScheduler();
59
60     // Should never get here.
61     EFR32_LOG("vTaskStartScheduler() failed");
62     return -1;
63 }