1 /* main.c - Application main entry point */
2 
3 /*
4  * Copyright (c) 2015-2016 Intel Corporation
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #include <zephyr/kernel.h>
10 #include <zephyr/types.h>
11 #include <zephyr/toolchain.h>
12 
13 #include <zephyr/logging/log.h>
14 #define LOG_MODULE_NAME bttester_main
15 LOG_MODULE_REGISTER(LOG_MODULE_NAME, CONFIG_BTTESTER_LOG_LEVEL);
16 
17 #include "btp/btp.h"
18 
main(void)19 int main(void)
20 {
21 	tester_init();
22 	return 0;
23 }
24