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/autoconf.h>
10 #include <zephyr/logging/log.h>
11 
12 #define LOG_MODULE_NAME bttester_main
13 LOG_MODULE_REGISTER(LOG_MODULE_NAME, CONFIG_BTTESTER_LOG_LEVEL);
14 
15 #include "btp/btp.h"
16 
main(void)17 int main(void)
18 {
19 	tester_init();
20 	return 0;
21 }
22