Fix tests: (#314)
- misprint in ports/zephyr/bip-init.c - error processing PROP_TRACKING_VALUE for the Color Temperature object in src/bacnet/bacapp.c - misprint MSV test - add hostnport.c for each zephyr tests - fix colors and ms-input tests - remove mocking Device_Inc_Database_Revision() for zephyr tests - debug the color temperature test
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief mock Device object functions
|
||||
* @author Mikhail Antropov
|
||||
* @date July 2022
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
#include <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)
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user