WXK
2025-05-22 035ecb85c3513be2b6ab5c515db082cb7fee8f97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 *******************************************************************************
 * @file     main.c
 * @create   2023-08-01    
 * @author   Panchip BLE GROUP
 * @note
 * Copyright (c) 2022 Shanghai Panchip Microelectronics Co.,Ltd.
 *
 *******************************************************************************
 */
#include "app.h"
 
int main(void)
{
    /* user initialization entry. */
    setup();
    
    /**
     *  "main()" is a thread if CONFIG_OS_EN=1
      *  "main()" is a main entry if CONFIG_OS_EN=0
     *  
     *  If the user is using the main thread, you need to enable the following code 
     *  and add the user's processing logic to the "loop()" function.
     */
 
//    while(1)
//    {
//      POLL();
//    }
 
}