Ported bacnet-basic from zephyr project to create basis for mini example. (#933)

This commit is contained in:
Steve Karg
2025-02-27 15:49:29 -06:00
committed by GitHub
parent 4ebc1a4566
commit 3e480f41e2
23 changed files with 3162 additions and 147 deletions
+2 -2
View File
@@ -125,7 +125,7 @@ uint32_t CharacterString_Value_Create(uint32_t object_instance)
* @param object_instance - object-instance number of the object
* @return true if the object is deleted
*/
bool Characterstring_Value_Delete(uint32_t object_instance)
bool CharacterString_Value_Delete(uint32_t object_instance)
{
bool status = false;
struct object_data *pObject = NULL;
@@ -142,7 +142,7 @@ bool Characterstring_Value_Delete(uint32_t object_instance)
/**
* @brief Cleans up the object list and its data
*/
void Characterstring_Value_Cleanup(void)
void CharacterString_Value_Cleanup(void)
{
struct object_data *pObject = NULL;