Bugfix/zephyr defines kconfig (#610)
* Added COV features to time-value object * Added zephyr config names with BACNET prefix
This commit is contained in:
+59
-3
@@ -16,6 +16,24 @@ module-str = Log level for BACnet
|
||||
module-help = Enable BACnet library to output debug messages
|
||||
source "$(ZEPHYR_BASE)/subsys/logging/Kconfig.template.log_config"
|
||||
|
||||
config BACNET_VENDOR_NAME
|
||||
string "BACnet Vendor Name"
|
||||
default "BACnet Stack at SourceForge"
|
||||
help
|
||||
BACnet Vendor Name string
|
||||
|
||||
config BACNET_VENDOR_IDENTIFIER
|
||||
int "BACnet Vendor Identifier"
|
||||
default 260
|
||||
help
|
||||
BACnet Vendir Identifier
|
||||
|
||||
config BACNET_PROTOCOL_REVISION
|
||||
int "BACnet Stack protocol-revision number"
|
||||
default 24
|
||||
help
|
||||
BACnet Stack protocol-revision number
|
||||
|
||||
config BAC_ROUTING
|
||||
bool "BACnet Routing"
|
||||
help
|
||||
@@ -68,6 +86,20 @@ config BACDL_BIP_PORT
|
||||
help
|
||||
UDP port to listen on (default=47808)
|
||||
|
||||
config MAX_BBMD_ENTRIES
|
||||
int "Maximum number of Broadcast Device Table entries"
|
||||
default 5
|
||||
depends on BACDL_BIP
|
||||
help
|
||||
Maximum number of Broadcast Device Table entries
|
||||
|
||||
config MAX_FD_ENTRIES
|
||||
int "Maximum number of Foreign Device Table entries"
|
||||
default 5
|
||||
depends on BACDL_BIP
|
||||
help
|
||||
Maximum number of Foreign Device Table entries
|
||||
|
||||
config BACDL_BIP_ADDRESS_INDEX
|
||||
int "Address index"
|
||||
depends on BACDL_BIP
|
||||
@@ -101,6 +133,30 @@ config BACDL_BIP6_PORT
|
||||
help
|
||||
UDP port to listen on (default=47808)
|
||||
|
||||
config BACNET_MAX_TSM_TRANSACTIONS
|
||||
int "Number of initiated confirmed-message transactions"
|
||||
default 1
|
||||
help
|
||||
Number of initiated confirmed-message transactions
|
||||
|
||||
config BACNET_MAX_ADDRESS_CACHE
|
||||
int "Number of address entries for I-Am bindings"
|
||||
default 1
|
||||
help
|
||||
Number of address entries for I-Am bindings
|
||||
|
||||
config BACNET_MAX_CHARACTER_STRING_BYTES
|
||||
int "Maximum number of bytes in a BACnet character string"
|
||||
default 64
|
||||
help
|
||||
Maximum number of bytes in a BACnet character string
|
||||
|
||||
config BACNET_MAX_OCTET_STRING_BYTES
|
||||
int "Maximum number of bytes in a BACnet octet string"
|
||||
default 64
|
||||
help
|
||||
Maximum number of bytes in a BACnet octet string
|
||||
|
||||
config BACNET_ADDRESS_CACHE_FILE
|
||||
bool "BACnet Address Cache file functionality"
|
||||
help
|
||||
@@ -280,19 +336,19 @@ config BACNET_BASIC_OBJECT_POSITIVE_INTEGER_VALUE
|
||||
help
|
||||
Use the BACnet basic positive-integer value object
|
||||
|
||||
config CONFIG_BACNET_BASIC_OBJECT_SCHEDULE
|
||||
config BACNET_BASIC_OBJECT_SCHEDULE
|
||||
bool "Use the BACnet basic schedule object"
|
||||
default false
|
||||
help
|
||||
Use the BACnet basic schedule object
|
||||
|
||||
config CONFIG_BACNET_BASIC_OBJECT_TIME_VALUE
|
||||
config BACNET_BASIC_OBJECT_TIME_VALUE
|
||||
bool "Use the BACnet basic time value object"
|
||||
default false
|
||||
help
|
||||
Use the BACnet basic time value object
|
||||
|
||||
config CONFIG_BACNET_BASIC_OBJECT_TRENDLOG
|
||||
config BACNET_BASIC_OBJECT_TRENDLOG
|
||||
bool "Use the BACnet basic trendlog object"
|
||||
default false
|
||||
help
|
||||
|
||||
Reference in New Issue
Block a user