Skip to content

Commit 1f94057

Browse files
committed
New bootloader events added and a lot of other events updated.
#13
1 parent a197137 commit 1f94057

22 files changed

+639
-579
lines changed

src/framework/core/vscp_core.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1551,6 +1551,18 @@ static inline void vscp_core_handleProtocolClassType(void)
15511551
/* Boot loader specific event. Not supported. */
15521552
break;
15531553

1554+
case VSCP_TYPE_PROTOCOL_BLOCK_CHUNK_ACK:
1555+
/* Boot loader specific event. Not supported. */
1556+
break;
1557+
1558+
case VSCP_TYPE_PROTOCOL_BLOCK_CHUNK_NACK:
1559+
/* Boot loader specific event. Not supported. */
1560+
break;
1561+
1562+
case VSCP_TYPE_PROTOCOL_BOOT_LOADER_CHECK:
1563+
/* Boot loader specific event. Not supported. */
1564+
break;
1565+
15541566
/* Not handled type */
15551567
default:
15561568
break;

src/framework/core/vscp_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ extern "C"
102102
#define VSCP_CORE_VERSION_STR "v1.13.1"
103103

104104
/** VSCP framework version string */
105-
#define VSCP_CORE_FRAMEWORK_VERSION "v2.0.3"
105+
#define VSCP_CORE_FRAMEWORK_VERSION "v2.1.0"
106106

107107
/*******************************************************************************
108108
MACROS

src/framework/core/vscp_type_display.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ extern "C"
116116
/**
117117
* This event contains information that should be displayed on LED(s) pointed out by zone/sub-zone.
118118
*/
119-
#define VSCP_TYPE_DISPLAY_SHOW_LED 48
119+
#define VSCP_TYPE_DISPLAY_SET_LED 48
120120

121121
/**
122-
* This event set the color for LED(s) pointed out by zone/sub-zone.
122+
* This event set the color for LED(s) (or similar device) pointed out by zone/sub-zone.
123123
*/
124-
#define VSCP_TYPE_DISPLAY_SHOW_LED_COLOR 49
124+
#define VSCP_TYPE_DISPLAY_SET_COLOR 49
125125

126126
/*******************************************************************************
127127
MACROS

0 commit comments

Comments
 (0)