/* | |
* Copyright (c) 2021 Intel Corporation. | |
* | |
* SPDX-License-Identifier: Apache-2.0 | |
*/ | |
#include <zephyr/logging/log.h> | |
LOG_MODULE_REGISTER(net_capture_sample, LOG_LEVEL_DBG); | |
#include <zephyr/kernel.h> | |
int main(void) | |
{ | |
LOG_INF("Starting network capture sample"); | |
return 0; | |
} |