a95b7d597e
Co-authored-by: Gregory Shue <gregory.shue@legrand.us>
33 lines
536 B
C
33 lines
536 B
C
/*
|
|
* Copyright (C) 2020 Legrand North America, Inc.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/* Standard includes */
|
|
#include <stdint.h>
|
|
|
|
/* Zephyr includes */
|
|
#include <init.h>
|
|
#include <kernel.h>
|
|
#include <sys/printk.h>
|
|
#include <sys/util.h>
|
|
#include <zephyr.h>
|
|
|
|
#define LOG_LEVEL CONFIG_BACNETSTACK_LOG_LEVEL
|
|
#include <logging/log.h>
|
|
LOG_MODULE_REGISTER(bacnet);
|
|
|
|
/* To do: init()
|
|
|
|
static int init(struct device *unused)
|
|
{
|
|
ARG_UNUSED(unused);
|
|
|
|
return 0;
|
|
}
|
|
|
|
SYS_INIT(init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
|
|
|
|
*/
|