@@ -43,9 +43,9 @@ This file is automatically generated. Don't change it manually.
43
43
INCLUDES
44
44
*******************************************************************************/
45
45
#include "vscp_evt_information.h"
46
- #include "..\core\ vscp_core.h"
47
- #include "..\core\ vscp_class_l1.h"
48
- #include "..\core\ vscp_type_information.h"
46
+ #include "vscp_core.h"
47
+ #include "vscp_class_l1.h"
48
+ #include "vscp_type_information.h"
49
49
50
50
/*******************************************************************************
51
51
COMPILER SWITCHES
@@ -1332,12 +1332,12 @@ extern BOOL vscp_evt_information_sendStreamDataWithZone(uint8_t zone, uint8_t su
1332
1332
* @param[in] zone Zone for which event applies to (0-255). 255 is all zones.
1333
1333
* @param[in] subZone Sub-Zone for which event applies to (0-255). 255 is all sub-zones.
1334
1334
* @param[in] sequenceNumber Sequence number.
1335
- * @param[in] class Class .
1336
- * @param[in] type Type .
1335
+ * @param[in] vscpClass VSCP class .
1336
+ * @param[in] vscpType VSCP type .
1337
1337
*
1338
1338
* @return If event is sent, it will return TRUE otherwise FALSE.
1339
1339
*/
1340
- extern BOOL vscp_evt_information_sendConfirm (uint8_t zone , uint8_t subZone , uint8_t sequenceNumber , uint16_t class , uint16_t type )
1340
+ extern BOOL vscp_evt_information_sendConfirm (uint8_t zone , uint8_t subZone , uint8_t sequenceNumber , uint16_t vscpClass , uint16_t vscpType )
1341
1341
{
1342
1342
vscp_TxMessage txMsg ;
1343
1343
uint8_t size = 0 ;
@@ -1353,12 +1353,12 @@ extern BOOL vscp_evt_information_sendConfirm(uint8_t zone, uint8_t subZone, uint
1353
1353
txMsg .data [2 ] = sequenceNumber ;
1354
1354
size += 1 ;
1355
1355
1356
- txMsg .data [3 ] = (uint8_t )((class >> 8 ) & 0xff );
1357
- txMsg .data [4 ] = (uint8_t )((class >> 0 ) & 0xff );
1356
+ txMsg .data [3 ] = (uint8_t )((vscpClass >> 8 ) & 0xff );
1357
+ txMsg .data [4 ] = (uint8_t )((vscpClass >> 0 ) & 0xff );
1358
1358
size += 2 ;
1359
1359
1360
- txMsg .data [5 ] = (uint8_t )((type >> 8 ) & 0xff );
1361
- txMsg .data [6 ] = (uint8_t )((type >> 0 ) & 0xff );
1360
+ txMsg .data [5 ] = (uint8_t )((vscpType >> 8 ) & 0xff );
1361
+ txMsg .data [6 ] = (uint8_t )((vscpType >> 0 ) & 0xff );
1362
1362
size += 2 ;
1363
1363
1364
1364
txMsg .dataSize = size ;
0 commit comments