Skip to content

Commit

Permalink
Release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Mar 23, 2016
1 parent e0eeb6e commit 4bfa8bd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion common/history.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@

2016-03-23 AKHE - VSCP Firmware 1.6 released.
2016-03-23 AKHE - VSCP Frimware 1.6.1 released
2016-03-23 AKHE - vscp_sendLogEvent parameter error fixed
2016-03-23 AKHE - VSCP Firmware 1.6.0 released.
4 changes: 2 additions & 2 deletions common/vscp_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -1361,12 +1361,12 @@ uint8_t vscp_sendLogEvent( uint8_t type,
uint8_t id,
uint8_t level,
uint8_t idx,
uint8_t data )
uint8_t *pdata )
{
vscp_omsg.data[ 0 ] = id;
vscp_omsg.data[ 1 ] = level;
vscp_omsg.data[ 2 ] = idx;
memcpy( vscp_omsg.data, data, 5 );
memcpy( vscp_omsg.data, pdata, 5 );

vscp_omsg.priority = VSCP_PRIORITY_MEDIUM;
vscp_omsg.flags = VSCP_VALID_MSG + 8;
Expand Down
5 changes: 3 additions & 2 deletions common/vscp_firmware.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ low end hardware device.
// VSCP Constants
// ******************************************************************************

#define VSCP_MAJOR_VERSION 1 // VSCP Major version
#define VSCP_MAJOR_VERSION 1 // VSCP Major version
#define VSCP_MINOR_VERSION 6 // VSCP Minor Version
#define VSCP_SUB_VERSION 1 // VSCP Sub version

#define VSCP_ADDRESS_MASTER 0x00
#define VSCP_ADDRESS_FREE 0xff
Expand Down Expand Up @@ -493,7 +494,7 @@ uint8_t vscp_sendLogEvent( uint8_t type,
uint8_t id,
uint8_t level,
uint8_t idx,
uint8_t data );
uint8_t *pdata );
#endif

// --------------------------- External Functions -----------------------------
Expand Down

0 comments on commit 4bfa8bd

Please sign in to comment.