eb36033fd8
Updating to integrate with Zephyr v3.2.0 required: - Update `west.yml` to import Zephyr v3.2.0 manifest - Prefix include pathname of ztest.h with `zephyr/` - Prefix every Zephyr header included pathname with `zephyr/` - Change all Zephyr tests/samples to use `find_package` - For unit_testing, use a distinct prj.conf which only references Kconfigs defined in the Zephyr repo. (Zephyr constraint.) - Move ztest headers into a zephyr-prefixed pathname Co-authored-by: Gregory Shue <gregory.shue@legrand.com>
27 lines
449 B
C
27 lines
449 B
C
/**
|
|
* @file
|
|
* @brief mock Device object functions
|
|
* @author Mikhail Antropov
|
|
* @date July 2022
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <zephyr/ztest.h>
|
|
#include <bacnet/bactext.h>
|
|
#include <bacnet/basic/object/device.h>
|
|
|
|
|
|
bool Device_Valid_Object_Name(
|
|
BACNET_CHARACTER_STRING * object_name,
|
|
BACNET_OBJECT_TYPE *object_type,
|
|
uint32_t * object_instance)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void Device_Inc_Database_Revision(
|
|
void)
|
|
{
|
|
|
|
}
|