Added arm-none-eabi GCC Makefile for ports/stm32f10x example

This commit is contained in:
skarg
2018-01-21 19:58:16 +00:00
parent e3fab4a96c
commit 96d222ec58
5 changed files with 439 additions and 17 deletions
+2 -17
View File
@@ -262,21 +262,6 @@ bool Device_Write_Property(
return status;
}
static unsigned property_list_count(
const int *pList)
{
unsigned property_count = 0;
if (pList) {
while (*pList != -1) {
property_count++;
pList++;
}
}
return property_count;
}
/* for a given object type, returns the special property list */
void Device_Objects_Property_List(
BACNET_OBJECT_TYPE object_type,
@@ -636,7 +621,7 @@ int Device_Read_Property_Local(
return 0;
}
apdu = rpdata->application_data;
switch (rpdata->object_property) {
switch ((int)rpdata->object_property) {
case PROP_DESCRIPTION:
characterstring_init_ansi(&char_string, "BACnet Development Kit");
apdu_len =
@@ -839,7 +824,7 @@ bool Device_Write_Property_Local(
wp_data->error_code = ERROR_CODE_PROPERTY_IS_NOT_AN_ARRAY;
return false;
}
switch (wp_data->object_property) {
switch ((int)wp_data->object_property) {
case PROP_OBJECT_IDENTIFIER:
if (value.tag == BACNET_APPLICATION_TAG_OBJECT_ID) {
if ((value.type.Object_Id.type == OBJECT_DEVICE) &&