Correcting prototypes and includes.
This commit is contained in:
@@ -55,7 +55,7 @@ DATABLOCK MyData[MYMAXBLOCK];
|
|||||||
|
|
||||||
uint8_t IOBufferPT[MAX_APDU]; /* Buffer for building response in */
|
uint8_t IOBufferPT[MAX_APDU]; /* Buffer for building response in */
|
||||||
|
|
||||||
void ProcessPT(
|
static void ProcessPT(
|
||||||
BACNET_PRIVATE_TRANSFER_DATA * data)
|
BACNET_PRIVATE_TRANSFER_DATA * data)
|
||||||
{
|
{
|
||||||
int iLen; /* Index to current location in data */
|
int iLen; /* Index to current location in data */
|
||||||
|
|||||||
@@ -135,6 +135,15 @@ extern "C" {
|
|||||||
BACNET_APPLICATION_DATA_VALUE * object_value,
|
BACNET_APPLICATION_DATA_VALUE * object_value,
|
||||||
uint8_t priority,
|
uint8_t priority,
|
||||||
int32_t array_index);
|
int32_t array_index);
|
||||||
|
uint8_t Send_Write_Property_Request_Data(
|
||||||
|
uint32_t device_id,
|
||||||
|
BACNET_OBJECT_TYPE object_type,
|
||||||
|
uint32_t object_instance,
|
||||||
|
BACNET_PROPERTY_ID object_property,
|
||||||
|
uint8_t * application_data,
|
||||||
|
int application_data_len,
|
||||||
|
uint8_t priority,
|
||||||
|
int32_t array_index);
|
||||||
|
|
||||||
/* returns the invoke ID for confirmed request, or 0 if failed */
|
/* returns the invoke ID for confirmed request, or 0 if failed */
|
||||||
uint8_t Send_Reinitialize_Device_Request(
|
uint8_t Send_Reinitialize_Device_Request(
|
||||||
|
|||||||
@@ -200,6 +200,8 @@ extern "C" {
|
|||||||
BACNET_CONFIRMED_SERVICE_DATA * service_data);
|
BACNET_CONFIRMED_SERVICE_DATA * service_data);
|
||||||
void handler_cov_task(
|
void handler_cov_task(
|
||||||
uint32_t elapsed_seconds);
|
uint32_t elapsed_seconds);
|
||||||
|
void handler_cov_init(
|
||||||
|
void);
|
||||||
int handler_cov_encode_subscriptions(
|
int handler_cov_encode_subscriptions(
|
||||||
uint8_t * apdu,
|
uint8_t * apdu,
|
||||||
int max_apdu);
|
int max_apdu);
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
|
|
||||||
/** @file debug.c Debug print function */
|
/** @file debug.c Debug print function */
|
||||||
|
|
||||||
|
#if DEBUG_ENABLED
|
||||||
void debug_printf(
|
void debug_printf(
|
||||||
const char *format,
|
const char *format,
|
||||||
...)
|
...)
|
||||||
@@ -54,3 +55,4 @@ void debug_printf(
|
|||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user