diff --git a/CHANGELOG.md b/CHANGELOG.md index 6206738..2f692db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.3.0 + +- Update to VSCP framework v1.3.0, please see the ![changelog](https://github.com/BlueAndi/vscp-framework/releases/tag/v1.3.0) there. + + ## 1.2.0 - Update to VSCP framework v1.2.0, please see the ![changelog](https://github.com/BlueAndi/vscp-framework/releases/tag/v1.2.0) there. diff --git a/examples/Generic/Generic.ino b/examples/Generic/Generic.ino index 69237a0..a143502 100644 --- a/examples/Generic/Generic.ino +++ b/examples/Generic/Generic.ino @@ -126,7 +126,7 @@ void setup() { vscp.setup( 8, // Status lamp pin 7, // Init button pin - nodeGuid, // Node GUID, + nodeGuid, // Node GUID 255, // Node zone (255 = all zones) 255, // Node sub-zone (255 = all sub-zones) transportRead, // VSCP framework calls it to read a message @@ -179,4 +179,4 @@ void loop() { } -} +} diff --git a/library.json b/library.json index 8f0d13f..2d29f54 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "vscp-arduino", - "version": "1.2.0", + "version": "1.3.0", "keywords": "vscp, arduino-library, vscp-arduino, automation, home automation", "description": "Very Simple Control Procotol (VSCP) Level 1 Library for the arduino IDE.", "repository": { diff --git a/library.properties b/library.properties index bd06cc2..2c75ba3 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=VSCP -version=1.2.0 +version=1.3.0 author=Andreas Merkle maintainer=Andreas Merkle sentence=Very Simple Control Protocol L1 framework for all Arduino boards. diff --git a/src/framework/core/vscp_core.c b/src/framework/core/vscp_core.c index e754785..c3771c2 100644 --- a/src/framework/core/vscp_core.c +++ b/src/framework/core/vscp_core.c @@ -616,7 +616,7 @@ extern uint32_t vscp_core_getTimeSinceEpoch(void) * Set the time since epoch 00:00:00 UTC, January 1, 1970. * Note, if a segment master is present, it will overwrite the time with its * heartbeat message. - * + * * @param[in] timestamp Unix timestamp */ extern void vscp_core_setTimeSinceEpoch(uint32_t timestamp) @@ -797,7 +797,7 @@ static inline void vscp_core_stateStartup(void) /** * Change to init state. * - Drop nickname id. - * + * * @param[in] probeSegmentMaster Probe for segment master (true) or start own nickname discovery (false). */ static inline void vscp_core_changeToStateInit(BOOL probeSegmentMaster) @@ -1574,7 +1574,7 @@ static inline void vscp_core_handleProtocolHeartbeat(void) vscp_core_changeToStateInit(TRUE); } } - + /* If available, store time since epoch 00:00:00 UTC, January 1, 1970 */ if (5 <= vscp_core_rxMessage.dataNum) { @@ -1700,19 +1700,19 @@ static inline void vscp_core_handleProtocolDropNicknameId(void) (3 == vscp_core_rxMessage.dataNum)) { uint8_t waitTime = 0; - + /* Wait time received? */ if (3 == vscp_core_rxMessage.dataNum) { waitTime = vscp_core_rxMessage.data[2]; } - + /* Byte 1: * Bit 5 - Reset device. Keep nickname. * Bit 6 - Set persistent storage to default. * Bit 7 - Go idle. Do not start up again. */ - + /* Set persistent memory to default (bit 6)? */ if (0 != (vscp_core_rxMessage.data[1] & (1 << 6))) { @@ -1980,7 +1980,7 @@ static uint8_t vscp_core_readRegister(uint16_t page, uint8_t addr) break; } } - + #if VSCP_CONFIG_BASE_IS_ENABLED( VSCP_CONFIG_ENABLE_DM ) /* Is the addressed register part of the decision matrix? */ else if (FALSE != vscp_dm_isDecisionMatrix(page, addr)) @@ -2211,7 +2211,7 @@ static uint8_t vscp_core_writeRegister(uint16_t page, uint8_t addr, uint8_t val /* Write protection disabled? */ else if (0 != vscp_core_getRegAppWriteProtect()) { - + #if VSCP_CONFIG_BASE_IS_ENABLED( VSCP_CONFIG_ENABLE_DM ) /* Is the addressed register part of the decision matrix? */ if (FALSE != vscp_dm_isDecisionMatrix(page, addr)) diff --git a/src/framework/core/vscp_core.h b/src/framework/core/vscp_core.h index 2442448..8267583 100644 --- a/src/framework/core/vscp_core.h +++ b/src/framework/core/vscp_core.h @@ -93,16 +93,16 @@ extern "C" #define VSCP_CORE_VERSION_MAJOR (1) /** VSCP specification minor version number, the framework is compliant to. */ -#define VSCP_CORE_VERSION_MINOR (11) +#define VSCP_CORE_VERSION_MINOR (12) /** VSCP specification sub-minor version number, the framework is compliant to. */ -#define VSCP_CORE_VERSION_SUB_MINOR (0) +#define VSCP_CORE_VERSION_SUB_MINOR (2) /** VSCP specification version string, the framework is compliant to. */ -#define VSCP_CORE_VERSION_STR "v1.11.00" +#define VSCP_CORE_VERSION_STR "v1.12.2" /** VSCP framework version string */ -#define VSCP_CORE_FRAMEWORK_VERSION "v1.2.0" +#define VSCP_CORE_FRAMEWORK_VERSION "v1.3.0" /******************************************************************************* MACROS @@ -201,7 +201,7 @@ extern uint32_t vscp_core_getTimeSinceEpoch(void); * Set the time since epoch 00:00:00 UTC, January 1, 1970. * Note, if a segment master is present, it will overwrite the time with its * heartbeat message. - * + * * @param[in] timestamp Unix timestamp */ extern void vscp_core_setTimeSinceEpoch(uint32_t timestamp); diff --git a/src/framework/core/vscp_dm.c b/src/framework/core/vscp_dm.c index efbae63..abc9dc5 100644 --- a/src/framework/core/vscp_dm.c +++ b/src/framework/core/vscp_dm.c @@ -204,7 +204,7 @@ extern void vscp_dm_init(void) */ extern void vscp_dm_restoreFactoryDefaultSettings(void) { - uint16_t index = 0; + uint16_t index = 0; vscp_dm_MatrixRow row = { 0, 0, 0, 0, 0, 0, 0, 0 }; #if VSCP_CONFIG_BASE_IS_ENABLED( VSCP_CONFIG_ENABLE_DM_EXTENSION ) diff --git a/src/framework/core/vscp_type_alarm.h b/src/framework/core/vscp_type_alarm.h index 35f7b45..ed765fe 100644 --- a/src/framework/core/vscp_type_alarm.h +++ b/src/framework/core/vscp_type_alarm.h @@ -134,6 +134,11 @@ extern "C" */ #define VSCP_TYPE_ALARM_WATCHDOG 12 +/** + * Indicates a alarm reset condition. + */ +#define VSCP_TYPE_ALARM_RESET 13 + /******************************************************************************* MACROS *******************************************************************************/ diff --git a/src/framework/core/vscp_type_information.h b/src/framework/core/vscp_type_information.h index 360e592..0d933c6 100644 --- a/src/framework/core/vscp_type_information.h +++ b/src/framework/core/vscp_type_information.h @@ -610,6 +610,11 @@ extern "C" */ #define VSCP_TYPE_INFORMATION_DECREMENTED 87 +/** + * Proximity detected. + */ +#define VSCP_TYPE_INFORMATION_PROXIMITY_DETECTED 88 + /******************************************************************************* MACROS *******************************************************************************/ diff --git a/src/framework/core/vscp_type_measurement.h b/src/framework/core/vscp_type_measurement.h index 44cce46..e4a3be0 100644 --- a/src/framework/core/vscp_type_measurement.h +++ b/src/framework/core/vscp_type_measurement.h @@ -263,7 +263,7 @@ extern "C" * Opt Unit: degree (1). * Opt Unit: arcminute (2). * Opt Unit: arcseconds (3). - * This is a measurement of an angle. + * This is a measurement of an angle or a direction or similar. */ #define VSCP_TYPE_MEASUREMENT_ANGLE 30 @@ -470,12 +470,28 @@ extern "C" #define VSCP_TYPE_MEASUREMENT_RADIATION_DOSE_EXPOSURE 62 /** - * Default unit: Percent - * Optional unit: Röntgen/R (1) - * Ratio between power in kW and apperant power in kVA. + * Default unit: cos of phase angle. + * This is a measurment of a power factor. Power factor is an expression of energy efficiency. It is + * usually expressed as a percentage - and the lower the percentage, the less efficient power usage + * is. */ #define VSCP_TYPE_MEASUREMENT_POWER_FACTOR 63 +/** + * Default unit: kVAr + * In electric power transmission and distribution, volt-ampere reactive (VAr) is a unit of + * measurement of reactive power. Reactive power exists in AC circuit when the current and voltage are + * not in phase. + */ +#define VSCP_TYPE_MEASUREMENT_REACTIVE_POWER 64 + +/** + * Default unit: kVArh + * Reactive energy is the electrical energy produced, flowing or supplied by an electric circuit + * during a time interval, measured in units of kVArh or standard multiples thereof. + */ +#define VSCP_TYPE_MEASUREMENT_REACTIVE_ENERGY 65 + /******************************************************************************* MACROS *******************************************************************************/ diff --git a/src/framework/events/vscp_evt_alarm.c b/src/framework/events/vscp_evt_alarm.c index ccfec17..2dabc6d 100644 --- a/src/framework/events/vscp_evt_alarm.c +++ b/src/framework/events/vscp_evt_alarm.c @@ -447,3 +447,33 @@ extern BOOL vscp_evt_alarm_sendWatchdog(uint8_t index, uint8_t zone, uint8_t sub return vscp_core_sendEvent(&txMsg); } +/** + * Alarm reset + * + * @param[in] alarmRegister Alarm byte from standard register 128/0x80. + * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. + * @param[in] subZone Sub-zone for which event applies to (0-255). 255 is all sub-zones. + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_alarm_sendAlarmReset(uint8_t alarmRegister, uint8_t zone, uint8_t subZone) +{ + vscp_TxMessage txMsg; + uint8_t size = 0; + + vscp_core_prepareTxMessage(&txMsg, VSCP_CLASS_L1_ALARM, VSCP_TYPE_ALARM_RESET, VSCP_PRIORITY_3_NORMAL); + + txMsg.data[0] = alarmRegister; + size += 1; + + txMsg.data[1] = zone; + size += 1; + + txMsg.data[2] = subZone; + size += 1; + + txMsg.dataNum = size; + + return vscp_core_sendEvent(&txMsg); +} + diff --git a/src/framework/events/vscp_evt_alarm.h b/src/framework/events/vscp_evt_alarm.h index 8cbd35b..0fefbd1 100644 --- a/src/framework/events/vscp_evt_alarm.h +++ b/src/framework/events/vscp_evt_alarm.h @@ -212,4 +212,15 @@ extern BOOL vscp_evt_alarm_sendDisarm(uint8_t onOff, uint8_t zone, uint8_t subZo */ extern BOOL vscp_evt_alarm_sendWatchdog(uint8_t index, uint8_t zone, uint8_t subZone); +/** + * Alarm reset + * + * @param[in] alarmRegister Alarm byte from standard register 128/0x80. + * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. + * @param[in] subZone Sub-zone for which event applies to (0-255). 255 is all sub-zones. + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_alarm_sendAlarmReset(uint8_t alarmRegister, uint8_t zone, uint8_t subZone); + #endif /* __VSCP_EVT_ALARM_H__ */ diff --git a/src/framework/events/vscp_evt_aol.c b/src/framework/events/vscp_evt_aol.c index d4e7649..ee0db2b 100644 --- a/src/framework/events/vscp_evt_aol.c +++ b/src/framework/events/vscp_evt_aol.c @@ -118,7 +118,7 @@ extern BOOL vscp_evt_aol_sendSystemUnpluggedFromPowerSource(uint8_t index, uint8 } /** - * System unplugged from power source + * System unplugged from network * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -148,7 +148,7 @@ extern BOOL vscp_evt_aol_sendSystemUnpluggedFromNetwork(uint8_t index, uint8_t z } /** - * System unplugged from power source + * Chassis intrusion * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -178,7 +178,7 @@ extern BOOL vscp_evt_aol_sendChassisIntrusion(uint8_t index, uint8_t zone, uint8 } /** - * System unplugged from power source + * Processor removal * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -208,7 +208,7 @@ extern BOOL vscp_evt_aol_sendProcessorRemoval(uint8_t index, uint8_t zone, uint8 } /** - * System unplugged from power source + * System environmental errors * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -238,7 +238,7 @@ extern BOOL vscp_evt_aol_sendSystemEnvironmentalErrors(uint8_t index, uint8_t zo } /** - * System unplugged from power source + * High temperature * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -268,7 +268,7 @@ extern BOOL vscp_evt_aol_sendHighTemperature(uint8_t index, uint8_t zone, uint8_ } /** - * System unplugged from power source + * Fan speed problem * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -298,7 +298,7 @@ extern BOOL vscp_evt_aol_sendFanSpeedProblem(uint8_t index, uint8_t zone, uint8_ } /** - * System unplugged from power source + * Voltage fluctuations * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -328,7 +328,7 @@ extern BOOL vscp_evt_aol_sendVoltageFluctuations(uint8_t index, uint8_t zone, ui } /** - * System unplugged from power source + * Operating system errors * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -358,7 +358,7 @@ extern BOOL vscp_evt_aol_sendOperatingSystemErrors(uint8_t index, uint8_t zone, } /** - * System unplugged from power source + * System power-on error * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_aol_sendSystemPowerOnError(uint8_t index, uint8_t zone, uin } /** - * System unplugged from power source + * System is hung * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -418,7 +418,7 @@ extern BOOL vscp_evt_aol_sendSystemIsHung(uint8_t index, uint8_t zone, uint8_t s } /** - * System unplugged from power source + * Component failure * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -448,7 +448,7 @@ extern BOOL vscp_evt_aol_sendComponentFailure(uint8_t index, uint8_t zone, uint8 } /** - * System unplugged from power source + * Remote system reboot upon report of a critical failure * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -478,7 +478,7 @@ extern BOOL vscp_evt_aol_sendRemoteSystemRebootUponReportOfACriticalFailure(uint } /** - * System unplugged from power source + * Repair Operating System * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -508,7 +508,7 @@ extern BOOL vscp_evt_aol_sendRepairOperatingSystem(uint8_t index, uint8_t zone, } /** - * System unplugged from power source + * Update BIOS image * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -538,7 +538,7 @@ extern BOOL vscp_evt_aol_sendUpdateBiosImage(uint8_t index, uint8_t zone, uint8_ } /** - * System unplugged from power source + * Update Perform other diagnostic procedures * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_aol.h b/src/framework/events/vscp_evt_aol.h index 89884e9..e9f45ca 100644 --- a/src/framework/events/vscp_evt_aol.h +++ b/src/framework/events/vscp_evt_aol.h @@ -92,7 +92,7 @@ extern BOOL vscp_evt_aol_sendGeneralEvent(void); extern BOOL vscp_evt_aol_sendSystemUnpluggedFromPowerSource(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * System unplugged from network * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -103,7 +103,7 @@ extern BOOL vscp_evt_aol_sendSystemUnpluggedFromPowerSource(uint8_t index, uint8 extern BOOL vscp_evt_aol_sendSystemUnpluggedFromNetwork(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Chassis intrusion * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -114,7 +114,7 @@ extern BOOL vscp_evt_aol_sendSystemUnpluggedFromNetwork(uint8_t index, uint8_t z extern BOOL vscp_evt_aol_sendChassisIntrusion(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Processor removal * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -125,7 +125,7 @@ extern BOOL vscp_evt_aol_sendChassisIntrusion(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_aol_sendProcessorRemoval(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * System environmental errors * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -136,7 +136,7 @@ extern BOOL vscp_evt_aol_sendProcessorRemoval(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_aol_sendSystemEnvironmentalErrors(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * High temperature * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -147,7 +147,7 @@ extern BOOL vscp_evt_aol_sendSystemEnvironmentalErrors(uint8_t index, uint8_t zo extern BOOL vscp_evt_aol_sendHighTemperature(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Fan speed problem * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -158,7 +158,7 @@ extern BOOL vscp_evt_aol_sendHighTemperature(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_aol_sendFanSpeedProblem(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Voltage fluctuations * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -169,7 +169,7 @@ extern BOOL vscp_evt_aol_sendFanSpeedProblem(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_aol_sendVoltageFluctuations(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Operating system errors * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -180,7 +180,7 @@ extern BOOL vscp_evt_aol_sendVoltageFluctuations(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_aol_sendOperatingSystemErrors(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * System power-on error * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -191,7 +191,7 @@ extern BOOL vscp_evt_aol_sendOperatingSystemErrors(uint8_t index, uint8_t zone, extern BOOL vscp_evt_aol_sendSystemPowerOnError(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * System is hung * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -202,7 +202,7 @@ extern BOOL vscp_evt_aol_sendSystemPowerOnError(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_aol_sendSystemIsHung(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Component failure * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -213,7 +213,7 @@ extern BOOL vscp_evt_aol_sendSystemIsHung(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_aol_sendComponentFailure(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Remote system reboot upon report of a critical failure * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -224,7 +224,7 @@ extern BOOL vscp_evt_aol_sendComponentFailure(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_aol_sendRemoteSystemRebootUponReportOfACriticalFailure(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Repair Operating System * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -235,7 +235,7 @@ extern BOOL vscp_evt_aol_sendRemoteSystemRebootUponReportOfACriticalFailure(uint extern BOOL vscp_evt_aol_sendRepairOperatingSystem(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Update BIOS image * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -246,7 +246,7 @@ extern BOOL vscp_evt_aol_sendRepairOperatingSystem(uint8_t index, uint8_t zone, extern BOOL vscp_evt_aol_sendUpdateBiosImage(uint8_t index, uint8_t zone, uint8_t subZone); /** - * System unplugged from power source + * Update Perform other diagnostic procedures * * @param[in] index Index for record. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_data.c b/src/framework/events/vscp_evt_data.c index 8e0e05c..f58999f 100644 --- a/src/framework/events/vscp_evt_data.c +++ b/src/framework/events/vscp_evt_data.c @@ -89,7 +89,7 @@ extern BOOL vscp_evt_data_sendGeneralEvent(void) } /** - * Count + * I/O value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -113,7 +113,7 @@ extern BOOL vscp_evt_data_sendIOValue(uint8_t index, uint8_t unit, int32_t data, } /** - * Count + * A/D value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -137,7 +137,7 @@ extern BOOL vscp_evt_data_sendADValue(uint8_t index, uint8_t unit, int32_t data, } /** - * Count + * D/A value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -161,7 +161,7 @@ extern BOOL vscp_evt_data_sendDAValue(uint8_t index, uint8_t unit, int32_t data, } /** - * Count + * Relative strength * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -185,7 +185,7 @@ extern BOOL vscp_evt_data_sendRelativeStrength(uint8_t index, uint8_t unit, int3 } /** - * Count + * Signal Level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -209,7 +209,7 @@ extern BOOL vscp_evt_data_sendSignalLevel(uint8_t index, uint8_t unit, int32_t d } /** - * Count + * Signal Quality * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. diff --git a/src/framework/events/vscp_evt_data.h b/src/framework/events/vscp_evt_data.h index a6ba8ae..e3d12e3 100644 --- a/src/framework/events/vscp_evt_data.h +++ b/src/framework/events/vscp_evt_data.h @@ -81,7 +81,7 @@ This file is automatically generated. Don't change it manually. extern BOOL vscp_evt_data_sendGeneralEvent(void); /** - * Count + * I/O value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -93,7 +93,7 @@ extern BOOL vscp_evt_data_sendGeneralEvent(void); extern BOOL vscp_evt_data_sendIOValue(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * A/D value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -105,7 +105,7 @@ extern BOOL vscp_evt_data_sendIOValue(uint8_t index, uint8_t unit, int32_t data, extern BOOL vscp_evt_data_sendADValue(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * D/A value * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -117,7 +117,7 @@ extern BOOL vscp_evt_data_sendADValue(uint8_t index, uint8_t unit, int32_t data, extern BOOL vscp_evt_data_sendDAValue(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Relative strength * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -129,7 +129,7 @@ extern BOOL vscp_evt_data_sendDAValue(uint8_t index, uint8_t unit, int32_t data, extern BOOL vscp_evt_data_sendRelativeStrength(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Signal Level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -141,7 +141,7 @@ extern BOOL vscp_evt_data_sendRelativeStrength(uint8_t index, uint8_t unit, int3 extern BOOL vscp_evt_data_sendSignalLevel(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Signal Quality * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. diff --git a/src/framework/events/vscp_evt_diagnostic.c b/src/framework/events/vscp_evt_diagnostic.c index 2f794ad..1053cb9 100644 --- a/src/framework/events/vscp_evt_diagnostic.c +++ b/src/framework/events/vscp_evt_diagnostic.c @@ -136,7 +136,7 @@ extern BOOL vscp_evt_diagnostic_sendOvervoltage(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Undervoltage * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -184,7 +184,7 @@ extern BOOL vscp_evt_diagnostic_sendUndervoltage(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * USB VBUS low * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -232,7 +232,7 @@ extern BOOL vscp_evt_diagnostic_sendUsbVbusLow(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Battery voltage low * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -280,7 +280,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryVoltageLow(uint8_t index, uint8_t zon } /** - * Overvoltage + * Battery full voltage * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -328,7 +328,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryFullVoltage(uint8_t index, uint8_t zo } /** - * Overvoltage + * Battery error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -376,7 +376,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryError(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * Battery OK * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -424,7 +424,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryOk(uint8_t index, uint8_t zone, uint8 } /** - * Overvoltage + * Over current * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -472,7 +472,7 @@ extern BOOL vscp_evt_diagnostic_sendOverCurrent(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Circuit error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -520,7 +520,7 @@ extern BOOL vscp_evt_diagnostic_sendCircuitError(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * Short circuit * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -568,7 +568,7 @@ extern BOOL vscp_evt_diagnostic_sendShortCircuit(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * Open Circuit * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -616,7 +616,7 @@ extern BOOL vscp_evt_diagnostic_sendOpenCircuit(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Moist * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -664,7 +664,7 @@ extern BOOL vscp_evt_diagnostic_sendMoist(uint8_t index, uint8_t zone, uint8_t s } /** - * Overvoltage + * Wire failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -712,7 +712,7 @@ extern BOOL vscp_evt_diagnostic_sendWireFailure(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Wireless faliure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -760,7 +760,7 @@ extern BOOL vscp_evt_diagnostic_sendWirelessFaliure(uint8_t index, uint8_t zone, } /** - * Overvoltage + * IR failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -808,7 +808,7 @@ extern BOOL vscp_evt_diagnostic_sendIrFailure(uint8_t index, uint8_t zone, uint8 } /** - * Overvoltage + * 1-wire failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -856,7 +856,7 @@ extern BOOL vscp_evt_diagnostic_send1WireFailure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * RS-222 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -904,7 +904,7 @@ extern BOOL vscp_evt_diagnostic_sendRs222Failure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * RS-232 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -952,7 +952,7 @@ extern BOOL vscp_evt_diagnostic_sendRs232Failure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * RS-423 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1000,7 +1000,7 @@ extern BOOL vscp_evt_diagnostic_sendRs423Failure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * RS-485 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1048,7 +1048,7 @@ extern BOOL vscp_evt_diagnostic_sendRs485Failure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * CAN failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1096,7 +1096,7 @@ extern BOOL vscp_evt_diagnostic_sendCanFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * LAN failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1144,7 +1144,7 @@ extern BOOL vscp_evt_diagnostic_sendLanFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * USB failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1192,7 +1192,7 @@ extern BOOL vscp_evt_diagnostic_sendUsbFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Wifi failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1240,7 +1240,7 @@ extern BOOL vscp_evt_diagnostic_sendWifiFailure(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * NFC/RFID failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1288,7 +1288,7 @@ extern BOOL vscp_evt_diagnostic_sendNfcRfidFailure(uint8_t index, uint8_t zone, } /** - * Overvoltage + * Low signal * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1336,7 +1336,7 @@ extern BOOL vscp_evt_diagnostic_sendLowSignal(uint8_t index, uint8_t zone, uint8 } /** - * Overvoltage + * High signal * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1384,7 +1384,7 @@ extern BOOL vscp_evt_diagnostic_sendHighSignal(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * ADC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1432,7 +1432,7 @@ extern BOOL vscp_evt_diagnostic_sendAdcFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * ALU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1480,7 +1480,7 @@ extern BOOL vscp_evt_diagnostic_sendAluFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Assert * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1528,7 +1528,7 @@ extern BOOL vscp_evt_diagnostic_sendAssert(uint8_t index, uint8_t zone, uint8_t } /** - * Overvoltage + * DAC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1576,7 +1576,7 @@ extern BOOL vscp_evt_diagnostic_sendDacFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * DMA failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1624,7 +1624,7 @@ extern BOOL vscp_evt_diagnostic_sendDmaFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Ethernet failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1672,7 +1672,7 @@ extern BOOL vscp_evt_diagnostic_sendEthernetFailure(uint8_t index, uint8_t zone, } /** - * Overvoltage + * Exception * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1720,7 +1720,7 @@ extern BOOL vscp_evt_diagnostic_sendException(uint8_t index, uint8_t zone, uint8 } /** - * Overvoltage + * FPU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1768,7 +1768,7 @@ extern BOOL vscp_evt_diagnostic_sendFpuFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * GPIO failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1816,7 +1816,7 @@ extern BOOL vscp_evt_diagnostic_sendGpioFailure(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * I2C failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1864,7 +1864,7 @@ extern BOOL vscp_evt_diagnostic_sendI2cFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * I2S failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1912,7 +1912,7 @@ extern BOOL vscp_evt_diagnostic_sendI2sFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Invalid configuration * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1960,7 +1960,7 @@ extern BOOL vscp_evt_diagnostic_sendInvalidConfiguration(uint8_t index, uint8_t } /** - * Overvoltage + * MMU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2008,7 +2008,7 @@ extern BOOL vscp_evt_diagnostic_sendMmuFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * NMI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2056,7 +2056,7 @@ extern BOOL vscp_evt_diagnostic_sendNmiFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Overheat * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2104,7 +2104,7 @@ extern BOOL vscp_evt_diagnostic_sendOverheat(uint8_t index, uint8_t zone, uint8_ } /** - * Overvoltage + * PLL fail * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2152,7 +2152,7 @@ extern BOOL vscp_evt_diagnostic_sendPllFail(uint8_t index, uint8_t zone, uint8_t } /** - * Overvoltage + * POR failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2200,7 +2200,7 @@ extern BOOL vscp_evt_diagnostic_sendPorFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * PWM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2248,7 +2248,7 @@ extern BOOL vscp_evt_diagnostic_sendPwmFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * RAM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2296,7 +2296,7 @@ extern BOOL vscp_evt_diagnostic_sendRamFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * ROM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2344,7 +2344,7 @@ extern BOOL vscp_evt_diagnostic_sendRomFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * SPI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2392,7 +2392,7 @@ extern BOOL vscp_evt_diagnostic_sendSpiFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Stack failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2440,7 +2440,7 @@ extern BOOL vscp_evt_diagnostic_sendStackFailure(uint8_t index, uint8_t zone, ui } /** - * Overvoltage + * LIN bus failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2488,7 +2488,7 @@ extern BOOL vscp_evt_diagnostic_sendLinBusFailure(uint8_t index, uint8_t zone, u } /** - * Overvoltage + * UART failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2536,7 +2536,7 @@ extern BOOL vscp_evt_diagnostic_sendUartFailure(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Unhandled interrupt * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2584,7 +2584,7 @@ extern BOOL vscp_evt_diagnostic_sendUnhandledInterrupt(uint8_t index, uint8_t zo } /** - * Overvoltage + * Memory failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2632,7 +2632,7 @@ extern BOOL vscp_evt_diagnostic_sendMemoryFailure(uint8_t index, uint8_t zone, u } /** - * Overvoltage + * Variable range failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2680,7 +2680,7 @@ extern BOOL vscp_evt_diagnostic_sendVariableRangeFailure(uint8_t index, uint8_t } /** - * Overvoltage + * WDT failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2728,7 +2728,7 @@ extern BOOL vscp_evt_diagnostic_sendWdtFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * EEPROM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2776,7 +2776,7 @@ extern BOOL vscp_evt_diagnostic_sendEepromFailure(uint8_t index, uint8_t zone, u } /** - * Overvoltage + * Encryption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2824,7 +2824,7 @@ extern BOOL vscp_evt_diagnostic_sendEncryptionFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * Bad user input failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2872,7 +2872,7 @@ extern BOOL vscp_evt_diagnostic_sendBadUserInputFailure(uint8_t index, uint8_t z } /** - * Overvoltage + * Decryption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2920,7 +2920,7 @@ extern BOOL vscp_evt_diagnostic_sendDecryptionFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * Noise * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2968,7 +2968,7 @@ extern BOOL vscp_evt_diagnostic_sendNoise(uint8_t index, uint8_t zone, uint8_t s } /** - * Overvoltage + * Boot loader failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3016,7 +3016,7 @@ extern BOOL vscp_evt_diagnostic_sendBootLoaderFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * Program flow failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3064,7 +3064,7 @@ extern BOOL vscp_evt_diagnostic_sendProgramFlowFailure(uint8_t index, uint8_t zo } /** - * Overvoltage + * RTC faiure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3112,7 +3112,7 @@ extern BOOL vscp_evt_diagnostic_sendRtcFaiure(uint8_t index, uint8_t zone, uint8 } /** - * Overvoltage + * System test failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3160,7 +3160,7 @@ extern BOOL vscp_evt_diagnostic_sendSystemTestFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * Sensor failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3208,7 +3208,7 @@ extern BOOL vscp_evt_diagnostic_sendSensorFailure(uint8_t index, uint8_t zone, u } /** - * Overvoltage + * Safe state entered * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3256,7 +3256,7 @@ extern BOOL vscp_evt_diagnostic_sendSafeStateEntered(uint8_t index, uint8_t zone } /** - * Overvoltage + * Signal implausible * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3304,7 +3304,7 @@ extern BOOL vscp_evt_diagnostic_sendSignalImplausible(uint8_t index, uint8_t zon } /** - * Overvoltage + * Storage fail * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3352,7 +3352,7 @@ extern BOOL vscp_evt_diagnostic_sendStorageFail(uint8_t index, uint8_t zone, uin } /** - * Overvoltage + * Self test OK * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3400,7 +3400,7 @@ extern BOOL vscp_evt_diagnostic_sendSelfTestOk(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * ESD/EMC/EMI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3448,7 +3448,7 @@ extern BOOL vscp_evt_diagnostic_sendEsdEmcEmiFailure(uint8_t index, uint8_t zone } /** - * Overvoltage + * Timeout * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3496,7 +3496,7 @@ extern BOOL vscp_evt_diagnostic_sendTimeout(uint8_t index, uint8_t zone, uint8_t } /** - * Overvoltage + * LCD failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3544,7 +3544,7 @@ extern BOOL vscp_evt_diagnostic_sendLcdFailure(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Touch panel failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3592,7 +3592,7 @@ extern BOOL vscp_evt_diagnostic_sendTouchPanelFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * No load * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3640,7 +3640,7 @@ extern BOOL vscp_evt_diagnostic_sendNoLoad(uint8_t index, uint8_t zone, uint8_t } /** - * Overvoltage + * Cooling failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3688,7 +3688,7 @@ extern BOOL vscp_evt_diagnostic_sendCoolingFailure(uint8_t index, uint8_t zone, } /** - * Overvoltage + * Heating failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3736,7 +3736,7 @@ extern BOOL vscp_evt_diagnostic_sendHeatingFailure(uint8_t index, uint8_t zone, } /** - * Overvoltage + * Transmission failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3784,7 +3784,7 @@ extern BOOL vscp_evt_diagnostic_sendTransmissionFailure(uint8_t index, uint8_t z } /** - * Overvoltage + * Receiption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3832,7 +3832,7 @@ extern BOOL vscp_evt_diagnostic_sendReceiptionFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * External IC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3880,7 +3880,7 @@ extern BOOL vscp_evt_diagnostic_sendExternalIcFailure(uint8_t index, uint8_t zon } /** - * Overvoltage + * Charging on * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3928,7 +3928,7 @@ extern BOOL vscp_evt_diagnostic_sendChargingOn(uint8_t index, uint8_t zone, uint } /** - * Overvoltage + * Charging off * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_diagnostic.h b/src/framework/events/vscp_evt_diagnostic.h index 0952522..305fc56 100644 --- a/src/framework/events/vscp_evt_diagnostic.h +++ b/src/framework/events/vscp_evt_diagnostic.h @@ -94,7 +94,7 @@ extern BOOL vscp_evt_diagnostic_sendGeneralEvent(void); extern BOOL vscp_evt_diagnostic_sendOvervoltage(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Undervoltage * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -108,7 +108,7 @@ extern BOOL vscp_evt_diagnostic_sendOvervoltage(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendUndervoltage(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * USB VBUS low * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -122,7 +122,7 @@ extern BOOL vscp_evt_diagnostic_sendUndervoltage(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendUsbVbusLow(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Battery voltage low * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -136,7 +136,7 @@ extern BOOL vscp_evt_diagnostic_sendUsbVbusLow(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendBatteryVoltageLow(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Battery full voltage * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -150,7 +150,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryVoltageLow(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendBatteryFullVoltage(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Battery error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -164,7 +164,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryFullVoltage(uint8_t index, uint8_t zo extern BOOL vscp_evt_diagnostic_sendBatteryError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Battery OK * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -178,7 +178,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryError(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendBatteryOk(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Over current * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -192,7 +192,7 @@ extern BOOL vscp_evt_diagnostic_sendBatteryOk(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_diagnostic_sendOverCurrent(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Circuit error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -206,7 +206,7 @@ extern BOOL vscp_evt_diagnostic_sendOverCurrent(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendCircuitError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Short circuit * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -220,7 +220,7 @@ extern BOOL vscp_evt_diagnostic_sendCircuitError(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendShortCircuit(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Open Circuit * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -234,7 +234,7 @@ extern BOOL vscp_evt_diagnostic_sendShortCircuit(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendOpenCircuit(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Moist * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -248,7 +248,7 @@ extern BOOL vscp_evt_diagnostic_sendOpenCircuit(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendMoist(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Wire failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -262,7 +262,7 @@ extern BOOL vscp_evt_diagnostic_sendMoist(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_diagnostic_sendWireFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Wireless faliure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -276,7 +276,7 @@ extern BOOL vscp_evt_diagnostic_sendWireFailure(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendWirelessFaliure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * IR failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -290,7 +290,7 @@ extern BOOL vscp_evt_diagnostic_sendWirelessFaliure(uint8_t index, uint8_t zone, extern BOOL vscp_evt_diagnostic_sendIrFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * 1-wire failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -304,7 +304,7 @@ extern BOOL vscp_evt_diagnostic_sendIrFailure(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_diagnostic_send1WireFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RS-222 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -318,7 +318,7 @@ extern BOOL vscp_evt_diagnostic_send1WireFailure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendRs222Failure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RS-232 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -332,7 +332,7 @@ extern BOOL vscp_evt_diagnostic_sendRs222Failure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendRs232Failure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RS-423 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -346,7 +346,7 @@ extern BOOL vscp_evt_diagnostic_sendRs232Failure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendRs423Failure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RS-485 failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -360,7 +360,7 @@ extern BOOL vscp_evt_diagnostic_sendRs423Failure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendRs485Failure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * CAN failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -374,7 +374,7 @@ extern BOOL vscp_evt_diagnostic_sendRs485Failure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendCanFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * LAN failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_diagnostic_sendCanFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendLanFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * USB failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -402,7 +402,7 @@ extern BOOL vscp_evt_diagnostic_sendLanFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendUsbFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Wifi failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -416,7 +416,7 @@ extern BOOL vscp_evt_diagnostic_sendUsbFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendWifiFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * NFC/RFID failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -430,7 +430,7 @@ extern BOOL vscp_evt_diagnostic_sendWifiFailure(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendNfcRfidFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Low signal * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -444,7 +444,7 @@ extern BOOL vscp_evt_diagnostic_sendNfcRfidFailure(uint8_t index, uint8_t zone, extern BOOL vscp_evt_diagnostic_sendLowSignal(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * High signal * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -458,7 +458,7 @@ extern BOOL vscp_evt_diagnostic_sendLowSignal(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_diagnostic_sendHighSignal(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * ADC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -472,7 +472,7 @@ extern BOOL vscp_evt_diagnostic_sendHighSignal(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendAdcFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * ALU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -486,7 +486,7 @@ extern BOOL vscp_evt_diagnostic_sendAdcFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendAluFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Assert * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -500,7 +500,7 @@ extern BOOL vscp_evt_diagnostic_sendAluFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendAssert(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * DAC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -514,7 +514,7 @@ extern BOOL vscp_evt_diagnostic_sendAssert(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_diagnostic_sendDacFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * DMA failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -528,7 +528,7 @@ extern BOOL vscp_evt_diagnostic_sendDacFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendDmaFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Ethernet failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -542,7 +542,7 @@ extern BOOL vscp_evt_diagnostic_sendDmaFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendEthernetFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Exception * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -556,7 +556,7 @@ extern BOOL vscp_evt_diagnostic_sendEthernetFailure(uint8_t index, uint8_t zone, extern BOOL vscp_evt_diagnostic_sendException(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * FPU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -570,7 +570,7 @@ extern BOOL vscp_evt_diagnostic_sendException(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_diagnostic_sendFpuFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * GPIO failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -584,7 +584,7 @@ extern BOOL vscp_evt_diagnostic_sendFpuFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendGpioFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * I2C failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -598,7 +598,7 @@ extern BOOL vscp_evt_diagnostic_sendGpioFailure(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendI2cFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * I2S failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -612,7 +612,7 @@ extern BOOL vscp_evt_diagnostic_sendI2cFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendI2sFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Invalid configuration * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -626,7 +626,7 @@ extern BOOL vscp_evt_diagnostic_sendI2sFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendInvalidConfiguration(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * MMU failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -640,7 +640,7 @@ extern BOOL vscp_evt_diagnostic_sendInvalidConfiguration(uint8_t index, uint8_t extern BOOL vscp_evt_diagnostic_sendMmuFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * NMI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -654,7 +654,7 @@ extern BOOL vscp_evt_diagnostic_sendMmuFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendNmiFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Overheat * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -668,7 +668,7 @@ extern BOOL vscp_evt_diagnostic_sendNmiFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendOverheat(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * PLL fail * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -682,7 +682,7 @@ extern BOOL vscp_evt_diagnostic_sendOverheat(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_diagnostic_sendPllFail(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * POR failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -696,7 +696,7 @@ extern BOOL vscp_evt_diagnostic_sendPllFail(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_diagnostic_sendPorFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * PWM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -710,7 +710,7 @@ extern BOOL vscp_evt_diagnostic_sendPorFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendPwmFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RAM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -724,7 +724,7 @@ extern BOOL vscp_evt_diagnostic_sendPwmFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendRamFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * ROM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -738,7 +738,7 @@ extern BOOL vscp_evt_diagnostic_sendRamFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendRomFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * SPI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -752,7 +752,7 @@ extern BOOL vscp_evt_diagnostic_sendRomFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendSpiFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Stack failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -766,7 +766,7 @@ extern BOOL vscp_evt_diagnostic_sendSpiFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendStackFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * LIN bus failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -780,7 +780,7 @@ extern BOOL vscp_evt_diagnostic_sendStackFailure(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_diagnostic_sendLinBusFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * UART failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -794,7 +794,7 @@ extern BOOL vscp_evt_diagnostic_sendLinBusFailure(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_diagnostic_sendUartFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Unhandled interrupt * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -808,7 +808,7 @@ extern BOOL vscp_evt_diagnostic_sendUartFailure(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendUnhandledInterrupt(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Memory failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -822,7 +822,7 @@ extern BOOL vscp_evt_diagnostic_sendUnhandledInterrupt(uint8_t index, uint8_t zo extern BOOL vscp_evt_diagnostic_sendMemoryFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Variable range failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -836,7 +836,7 @@ extern BOOL vscp_evt_diagnostic_sendMemoryFailure(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_diagnostic_sendVariableRangeFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * WDT failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -850,7 +850,7 @@ extern BOOL vscp_evt_diagnostic_sendVariableRangeFailure(uint8_t index, uint8_t extern BOOL vscp_evt_diagnostic_sendWdtFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * EEPROM failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -864,7 +864,7 @@ extern BOOL vscp_evt_diagnostic_sendWdtFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendEepromFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Encryption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -878,7 +878,7 @@ extern BOOL vscp_evt_diagnostic_sendEepromFailure(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_diagnostic_sendEncryptionFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Bad user input failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -892,7 +892,7 @@ extern BOOL vscp_evt_diagnostic_sendEncryptionFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendBadUserInputFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Decryption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -906,7 +906,7 @@ extern BOOL vscp_evt_diagnostic_sendBadUserInputFailure(uint8_t index, uint8_t z extern BOOL vscp_evt_diagnostic_sendDecryptionFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Noise * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -920,7 +920,7 @@ extern BOOL vscp_evt_diagnostic_sendDecryptionFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendNoise(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Boot loader failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -934,7 +934,7 @@ extern BOOL vscp_evt_diagnostic_sendNoise(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_diagnostic_sendBootLoaderFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Program flow failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -948,7 +948,7 @@ extern BOOL vscp_evt_diagnostic_sendBootLoaderFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendProgramFlowFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * RTC faiure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -962,7 +962,7 @@ extern BOOL vscp_evt_diagnostic_sendProgramFlowFailure(uint8_t index, uint8_t zo extern BOOL vscp_evt_diagnostic_sendRtcFaiure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * System test failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -976,7 +976,7 @@ extern BOOL vscp_evt_diagnostic_sendRtcFaiure(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_diagnostic_sendSystemTestFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Sensor failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -990,7 +990,7 @@ extern BOOL vscp_evt_diagnostic_sendSystemTestFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendSensorFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Safe state entered * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1004,7 +1004,7 @@ extern BOOL vscp_evt_diagnostic_sendSensorFailure(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_diagnostic_sendSafeStateEntered(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Signal implausible * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1018,7 +1018,7 @@ extern BOOL vscp_evt_diagnostic_sendSafeStateEntered(uint8_t index, uint8_t zone extern BOOL vscp_evt_diagnostic_sendSignalImplausible(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Storage fail * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1032,7 +1032,7 @@ extern BOOL vscp_evt_diagnostic_sendSignalImplausible(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendStorageFail(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Self test OK * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1046,7 +1046,7 @@ extern BOOL vscp_evt_diagnostic_sendStorageFail(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_diagnostic_sendSelfTestOk(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * ESD/EMC/EMI failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1060,7 +1060,7 @@ extern BOOL vscp_evt_diagnostic_sendSelfTestOk(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendEsdEmcEmiFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Timeout * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1074,7 +1074,7 @@ extern BOOL vscp_evt_diagnostic_sendEsdEmcEmiFailure(uint8_t index, uint8_t zone extern BOOL vscp_evt_diagnostic_sendTimeout(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * LCD failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1088,7 +1088,7 @@ extern BOOL vscp_evt_diagnostic_sendTimeout(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_diagnostic_sendLcdFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Touch panel failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1102,7 +1102,7 @@ extern BOOL vscp_evt_diagnostic_sendLcdFailure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_diagnostic_sendTouchPanelFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * No load * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1116,7 +1116,7 @@ extern BOOL vscp_evt_diagnostic_sendTouchPanelFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendNoLoad(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Cooling failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1130,7 +1130,7 @@ extern BOOL vscp_evt_diagnostic_sendNoLoad(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_diagnostic_sendCoolingFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Heating failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1144,7 +1144,7 @@ extern BOOL vscp_evt_diagnostic_sendCoolingFailure(uint8_t index, uint8_t zone, extern BOOL vscp_evt_diagnostic_sendHeatingFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Transmission failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1158,7 +1158,7 @@ extern BOOL vscp_evt_diagnostic_sendHeatingFailure(uint8_t index, uint8_t zone, extern BOOL vscp_evt_diagnostic_sendTransmissionFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Receiption failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1172,7 +1172,7 @@ extern BOOL vscp_evt_diagnostic_sendTransmissionFailure(uint8_t index, uint8_t z extern BOOL vscp_evt_diagnostic_sendReceiptionFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * External IC failure * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1186,7 +1186,7 @@ extern BOOL vscp_evt_diagnostic_sendReceiptionFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendExternalIcFailure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Charging on * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1200,7 +1200,7 @@ extern BOOL vscp_evt_diagnostic_sendExternalIcFailure(uint8_t index, uint8_t zon extern BOOL vscp_evt_diagnostic_sendChargingOn(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Overvoltage + * Charging off * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_error.c b/src/framework/events/vscp_evt_error.c index 638ed06..f2db4c7 100644 --- a/src/framework/events/vscp_evt_error.c +++ b/src/framework/events/vscp_evt_error.c @@ -120,7 +120,7 @@ extern BOOL vscp_evt_error_sendSuccess(uint8_t index, uint8_t zone, uint8_t subZ } /** - * Success + * Error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -168,7 +168,7 @@ extern BOOL vscp_evt_error_sendError(uint8_t index, uint8_t zone, uint8_t subZon } /** - * Success + * Channel error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -216,7 +216,7 @@ extern BOOL vscp_evt_error_sendChannelError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Fifo empty error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -264,7 +264,7 @@ extern BOOL vscp_evt_error_sendFifoEmptyError(uint8_t index, uint8_t zone, uint8 } /** - * Success + * Fifo full error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -312,7 +312,7 @@ extern BOOL vscp_evt_error_sendFifoFullError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Fifo size error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -360,7 +360,7 @@ extern BOOL vscp_evt_error_sendFifoSizeError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Fifo wait error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -408,7 +408,7 @@ extern BOOL vscp_evt_error_sendFifoWaitError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Generic error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -456,7 +456,7 @@ extern BOOL vscp_evt_error_sendGenericError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Hardware error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -504,7 +504,7 @@ extern BOOL vscp_evt_error_sendHardwareError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * initialization error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -552,7 +552,7 @@ extern BOOL vscp_evt_error_sendInitializationError(uint8_t index, uint8_t zone, } /** - * Success + * Missing initialization error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -600,7 +600,7 @@ extern BOOL vscp_evt_error_sendMissingInitializationError(uint8_t index, uint8_t } /** - * Success + * Initialization ready * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -648,7 +648,7 @@ extern BOOL vscp_evt_error_sendInitializationReady(uint8_t index, uint8_t zone, } /** - * Success + * Not supported * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -696,7 +696,7 @@ extern BOOL vscp_evt_error_sendNotSupported(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Overrun error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -744,7 +744,7 @@ extern BOOL vscp_evt_error_sendOverrunError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Receiver empty error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -792,7 +792,7 @@ extern BOOL vscp_evt_error_sendReceiverEmptyError(uint8_t index, uint8_t zone, u } /** - * Success + * Register error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -840,7 +840,7 @@ extern BOOL vscp_evt_error_sendRegisterError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Transmitter full error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -888,7 +888,7 @@ extern BOOL vscp_evt_error_sendTransmitterFullError(uint8_t index, uint8_t zone, } /** - * Success + * Library error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -936,7 +936,7 @@ extern BOOL vscp_evt_error_sendLibraryError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Procedural address error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -984,7 +984,7 @@ extern BOOL vscp_evt_error_sendProceduralAddressError(uint8_t index, uint8_t zon } /** - * Success + * Only one instance error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1032,7 +1032,7 @@ extern BOOL vscp_evt_error_sendOnlyOneInstanceError(uint8_t index, uint8_t zone, } /** - * Success + * Sub driver error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1080,7 +1080,7 @@ extern BOOL vscp_evt_error_sendSubDriverError(uint8_t index, uint8_t zone, uint8 } /** - * Success + * Timeout error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1128,7 +1128,7 @@ extern BOOL vscp_evt_error_sendTimeoutError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Not open error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1176,7 +1176,7 @@ extern BOOL vscp_evt_error_sendNotOpenError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Parameter error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1224,7 +1224,7 @@ extern BOOL vscp_evt_error_sendParameterError(uint8_t index, uint8_t zone, uint8 } /** - * Success + * Memory error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1272,7 +1272,7 @@ extern BOOL vscp_evt_error_sendMemoryError(uint8_t index, uint8_t zone, uint8_t } /** - * Success + * Internal error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1320,7 +1320,7 @@ extern BOOL vscp_evt_error_sendInternalError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Communication error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1368,7 +1368,7 @@ extern BOOL vscp_evt_error_sendCommunicationError(uint8_t index, uint8_t zone, u } /** - * Success + * User error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1416,7 +1416,7 @@ extern BOOL vscp_evt_error_sendUserError(uint8_t index, uint8_t zone, uint8_t su } /** - * Success + * Password error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1464,7 +1464,7 @@ extern BOOL vscp_evt_error_sendPasswordError(uint8_t index, uint8_t zone, uint8_ } /** - * Success + * Connection error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1512,7 +1512,7 @@ extern BOOL vscp_evt_error_sendConnectionError(uint8_t index, uint8_t zone, uint } /** - * Success + * Invalid handle error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1560,7 +1560,7 @@ extern BOOL vscp_evt_error_sendInvalidHandleError(uint8_t index, uint8_t zone, u } /** - * Success + * Operation failed error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1608,7 +1608,7 @@ extern BOOL vscp_evt_error_sendOperationFailedError(uint8_t index, uint8_t zone, } /** - * Success + * Supplied buffer is to small to fit content * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1656,7 +1656,7 @@ extern BOOL vscp_evt_error_sendSuppliedBufferIsToSmallToFitContent(uint8_t index } /** - * Success + * Requested item is unknown * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1704,7 +1704,7 @@ extern BOOL vscp_evt_error_sendRequestedItemIsUnknown(uint8_t index, uint8_t zon } /** - * Success + * Name is already in use * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1752,7 +1752,7 @@ extern BOOL vscp_evt_error_sendNameIsAlreadyInUse(uint8_t index, uint8_t zone, u } /** - * Success + * Error when writing data * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1800,7 +1800,7 @@ extern BOOL vscp_evt_error_sendErrorWhenWritingData(uint8_t index, uint8_t zone, } /** - * Success + * Operation stopped or aborted * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1848,7 +1848,7 @@ extern BOOL vscp_evt_error_sendOperationStoppedOrAborted(uint8_t index, uint8_t } /** - * Success + * Pointer with invalid value * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_error.h b/src/framework/events/vscp_evt_error.h index 897892d..7b52d3b 100644 --- a/src/framework/events/vscp_evt_error.h +++ b/src/framework/events/vscp_evt_error.h @@ -87,7 +87,7 @@ This file is automatically generated. Don't change it manually. extern BOOL vscp_evt_error_sendSuccess(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -101,7 +101,7 @@ extern BOOL vscp_evt_error_sendSuccess(uint8_t index, uint8_t zone, uint8_t subZ extern BOOL vscp_evt_error_sendError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Channel error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -115,7 +115,7 @@ extern BOOL vscp_evt_error_sendError(uint8_t index, uint8_t zone, uint8_t subZon extern BOOL vscp_evt_error_sendChannelError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Fifo empty error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -129,7 +129,7 @@ extern BOOL vscp_evt_error_sendChannelError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendFifoEmptyError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Fifo full error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -143,7 +143,7 @@ extern BOOL vscp_evt_error_sendFifoEmptyError(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_error_sendFifoFullError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Fifo size error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -157,7 +157,7 @@ extern BOOL vscp_evt_error_sendFifoFullError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendFifoSizeError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Fifo wait error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -171,7 +171,7 @@ extern BOOL vscp_evt_error_sendFifoSizeError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendFifoWaitError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Generic error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -185,7 +185,7 @@ extern BOOL vscp_evt_error_sendFifoWaitError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendGenericError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Hardware error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -199,7 +199,7 @@ extern BOOL vscp_evt_error_sendGenericError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendHardwareError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * initialization error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -213,7 +213,7 @@ extern BOOL vscp_evt_error_sendHardwareError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendInitializationError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Missing initialization error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -227,7 +227,7 @@ extern BOOL vscp_evt_error_sendInitializationError(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendMissingInitializationError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Initialization ready * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -241,7 +241,7 @@ extern BOOL vscp_evt_error_sendMissingInitializationError(uint8_t index, uint8_t extern BOOL vscp_evt_error_sendInitializationReady(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Not supported * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -255,7 +255,7 @@ extern BOOL vscp_evt_error_sendInitializationReady(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendNotSupported(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Overrun error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -269,7 +269,7 @@ extern BOOL vscp_evt_error_sendNotSupported(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendOverrunError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Receiver empty error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -283,7 +283,7 @@ extern BOOL vscp_evt_error_sendOverrunError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendReceiverEmptyError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Register error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -297,7 +297,7 @@ extern BOOL vscp_evt_error_sendReceiverEmptyError(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_error_sendRegisterError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Transmitter full error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -311,7 +311,7 @@ extern BOOL vscp_evt_error_sendRegisterError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendTransmitterFullError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Library error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -325,7 +325,7 @@ extern BOOL vscp_evt_error_sendTransmitterFullError(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendLibraryError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Procedural address error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -339,7 +339,7 @@ extern BOOL vscp_evt_error_sendLibraryError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendProceduralAddressError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Only one instance error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -353,7 +353,7 @@ extern BOOL vscp_evt_error_sendProceduralAddressError(uint8_t index, uint8_t zon extern BOOL vscp_evt_error_sendOnlyOneInstanceError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Sub driver error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -367,7 +367,7 @@ extern BOOL vscp_evt_error_sendOnlyOneInstanceError(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendSubDriverError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Timeout error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -381,7 +381,7 @@ extern BOOL vscp_evt_error_sendSubDriverError(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_error_sendTimeoutError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Not open error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -395,7 +395,7 @@ extern BOOL vscp_evt_error_sendTimeoutError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendNotOpenError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Parameter error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -409,7 +409,7 @@ extern BOOL vscp_evt_error_sendNotOpenError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendParameterError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Memory error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -423,7 +423,7 @@ extern BOOL vscp_evt_error_sendParameterError(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_error_sendMemoryError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Internal error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -437,7 +437,7 @@ extern BOOL vscp_evt_error_sendMemoryError(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_error_sendInternalError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Communication error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -451,7 +451,7 @@ extern BOOL vscp_evt_error_sendInternalError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendCommunicationError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * User error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -465,7 +465,7 @@ extern BOOL vscp_evt_error_sendCommunicationError(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_error_sendUserError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Password error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -479,7 +479,7 @@ extern BOOL vscp_evt_error_sendUserError(uint8_t index, uint8_t zone, uint8_t su extern BOOL vscp_evt_error_sendPasswordError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Connection error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -493,7 +493,7 @@ extern BOOL vscp_evt_error_sendPasswordError(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_error_sendConnectionError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Invalid handle error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -507,7 +507,7 @@ extern BOOL vscp_evt_error_sendConnectionError(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_error_sendInvalidHandleError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Operation failed error * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -521,7 +521,7 @@ extern BOOL vscp_evt_error_sendInvalidHandleError(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_error_sendOperationFailedError(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Supplied buffer is to small to fit content * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -535,7 +535,7 @@ extern BOOL vscp_evt_error_sendOperationFailedError(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendSuppliedBufferIsToSmallToFitContent(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Requested item is unknown * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -549,7 +549,7 @@ extern BOOL vscp_evt_error_sendSuppliedBufferIsToSmallToFitContent(uint8_t index extern BOOL vscp_evt_error_sendRequestedItemIsUnknown(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Name is already in use * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -563,7 +563,7 @@ extern BOOL vscp_evt_error_sendRequestedItemIsUnknown(uint8_t index, uint8_t zon extern BOOL vscp_evt_error_sendNameIsAlreadyInUse(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Error when writing data * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -577,7 +577,7 @@ extern BOOL vscp_evt_error_sendNameIsAlreadyInUse(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_error_sendErrorWhenWritingData(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Operation stopped or aborted * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -591,7 +591,7 @@ extern BOOL vscp_evt_error_sendErrorWhenWritingData(uint8_t index, uint8_t zone, extern BOOL vscp_evt_error_sendOperationStoppedOrAborted(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t const * const user, uint8_t userSize); /** - * Success + * Pointer with invalid value * * @param[in] index Index. Often used as an index for channels/subdevices within a module. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_information.c b/src/framework/events/vscp_evt_information.c index 13f32fd..4cb6241 100644 --- a/src/framework/events/vscp_evt_information.c +++ b/src/framework/events/vscp_evt_information.c @@ -2934,3 +2934,41 @@ extern BOOL vscp_evt_information_sendDecremented(uint8_t userSpecific, uint8_t z return vscp_core_sendEvent(&txMsg); } +/** + * Proximity detected + * + * @param[in] userSpecific User specific. + * @param[in] zone Zone for which event applies to (0-255). 255 is all zones + * @param[in] subzone Sub-zone for which event applies to (0-255). 255 is all sub-zones + * @param[in] proximityLevel Optional uint16 that sets proximity level if present. (optional) + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_information_sendProximityDetected(uint8_t userSpecific, uint8_t zone, uint8_t subzone, uint16_t const * const proximityLevel) +{ + vscp_TxMessage txMsg; + uint8_t size = 0; + + vscp_core_prepareTxMessage(&txMsg, VSCP_CLASS_L1_INFORMATION, VSCP_TYPE_INFORMATION_PROXIMITY_DETECTED, VSCP_PRIORITY_3_NORMAL); + + txMsg.data[0] = userSpecific; + size += 1; + + txMsg.data[1] = zone; + size += 1; + + txMsg.data[2] = subzone; + size += 1; + + if (NULL != proximityLevel) + { + txMsg.data[3] = (uint8_t)((*proximityLevel >> 8) & 0xff); + txMsg.data[4] = (uint8_t)((*proximityLevel >> 0) & 0xff); + size += 2; + } + + txMsg.dataNum = size; + + return vscp_core_sendEvent(&txMsg); +} + diff --git a/src/framework/events/vscp_evt_information.h b/src/framework/events/vscp_evt_information.h index b2dbc0f..2ab8fc1 100644 --- a/src/framework/events/vscp_evt_information.h +++ b/src/framework/events/vscp_evt_information.h @@ -1081,4 +1081,16 @@ extern BOOL vscp_evt_information_sendIncremented(uint8_t userSpecific, uint8_t z */ extern BOOL vscp_evt_information_sendDecremented(uint8_t userSpecific, uint8_t zone, uint8_t subzone, uint8_t const * const decrementedValue, uint8_t decrementedValueSize); +/** + * Proximity detected + * + * @param[in] userSpecific User specific. + * @param[in] zone Zone for which event applies to (0-255). 255 is all zones + * @param[in] subzone Sub-zone for which event applies to (0-255). 255 is all sub-zones + * @param[in] proximityLevel Optional uint16 that sets proximity level if present. (optional) + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_information_sendProximityDetected(uint8_t userSpecific, uint8_t zone, uint8_t subzone, uint16_t const * const proximityLevel); + #endif /* __VSCP_EVT_INFORMATION_H__ */ diff --git a/src/framework/events/vscp_evt_measurement.c b/src/framework/events/vscp_evt_measurement.c index bbf282d..5c3f5ac 100644 --- a/src/framework/events/vscp_evt_measurement.c +++ b/src/framework/events/vscp_evt_measurement.c @@ -113,7 +113,7 @@ extern BOOL vscp_evt_measurement_sendCount(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -137,7 +137,7 @@ extern BOOL vscp_evt_measurement_sendLengthDistance(uint8_t index, uint8_t unit, } /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -161,7 +161,7 @@ extern BOOL vscp_evt_measurement_sendMass(uint8_t index, uint8_t unit, int32_t d } /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -185,7 +185,7 @@ extern BOOL vscp_evt_measurement_sendTime(uint8_t index, uint8_t unit, int32_t d } /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -209,7 +209,7 @@ extern BOOL vscp_evt_measurement_sendElectricCurrent(uint8_t index, uint8_t unit } /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -233,7 +233,7 @@ extern BOOL vscp_evt_measurement_sendTemperature(uint8_t index, uint8_t unit, in } /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -257,7 +257,7 @@ extern BOOL vscp_evt_measurement_sendAmountOfSubstance(uint8_t index, uint8_t un } /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -281,7 +281,7 @@ extern BOOL vscp_evt_measurement_sendLuminousIntensityIntensityOfLight(uint8_t i } /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -305,7 +305,7 @@ extern BOOL vscp_evt_measurement_sendFrequency(uint8_t index, uint8_t unit, int3 } /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -329,7 +329,7 @@ extern BOOL vscp_evt_measurement_sendRadioactivityAndOtherRandomEvents(uint8_t i } /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -353,7 +353,7 @@ extern BOOL vscp_evt_measurement_sendForce(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -377,7 +377,7 @@ extern BOOL vscp_evt_measurement_sendPressure(uint8_t index, uint8_t unit, int32 } /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -401,7 +401,7 @@ extern BOOL vscp_evt_measurement_sendEnergy(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -425,7 +425,7 @@ extern BOOL vscp_evt_measurement_sendPower(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -449,7 +449,7 @@ extern BOOL vscp_evt_measurement_sendElectricalCharge(uint8_t index, uint8_t uni } /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -473,7 +473,7 @@ extern BOOL vscp_evt_measurement_sendElectricalPotentialVoltage(uint8_t index, u } /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -497,7 +497,7 @@ extern BOOL vscp_evt_measurement_sendElectricalCapacitance(uint8_t index, uint8_ } /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -521,7 +521,7 @@ extern BOOL vscp_evt_measurement_sendElectricalResistance(uint8_t index, uint8_t } /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -545,7 +545,7 @@ extern BOOL vscp_evt_measurement_sendElectricalConductance(uint8_t index, uint8_ } /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -569,7 +569,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFieldStrength(uint8_t index, uint8_ } /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -593,7 +593,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFlux(uint8_t index, uint8_t unit, i } /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -617,7 +617,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFluxDensity(uint8_t index, uint8_t } /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -641,7 +641,7 @@ extern BOOL vscp_evt_measurement_sendInductance(uint8_t index, uint8_t unit, int } /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -665,7 +665,7 @@ extern BOOL vscp_evt_measurement_sendLuminousFlux(uint8_t index, uint8_t unit, i } /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -689,7 +689,7 @@ extern BOOL vscp_evt_measurement_sendIlluminance(uint8_t index, uint8_t unit, in } /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -713,7 +713,7 @@ extern BOOL vscp_evt_measurement_sendRadiationDose(uint8_t index, uint8_t unit, } /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -737,7 +737,7 @@ extern BOOL vscp_evt_measurement_sendCatalyticActivity(uint8_t index, uint8_t un } /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -761,7 +761,7 @@ extern BOOL vscp_evt_measurement_sendVolume(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -785,7 +785,7 @@ extern BOOL vscp_evt_measurement_sendSoundIntensity(uint8_t index, uint8_t unit, } /** - * Count + * Angle, direction or similar * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -794,7 +794,7 @@ extern BOOL vscp_evt_measurement_sendSoundIntensity(uint8_t index, uint8_t unit, * * @return If event is sent, it will return TRUE otherwise FALSE. */ -extern BOOL vscp_evt_measurement_sendAngle(uint8_t index, uint8_t unit, int32_t data, int8_t exp) +extern BOOL vscp_evt_measurement_sendAngleDirectionOrSimilar(uint8_t index, uint8_t unit, int32_t data, int8_t exp) { vscp_TxMessage txMsg; @@ -809,7 +809,7 @@ extern BOOL vscp_evt_measurement_sendAngle(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -833,7 +833,7 @@ extern BOOL vscp_evt_measurement_sendPositionWgs84(uint8_t index, uint8_t unit, } /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -857,7 +857,7 @@ extern BOOL vscp_evt_measurement_sendSpeed(uint8_t index, uint8_t unit, int32_t } /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -881,7 +881,7 @@ extern BOOL vscp_evt_measurement_sendAcceleration(uint8_t index, uint8_t unit, i } /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -905,7 +905,7 @@ extern BOOL vscp_evt_measurement_sendTension(uint8_t index, uint8_t unit, int32_ } /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -929,7 +929,7 @@ extern BOOL vscp_evt_measurement_sendDampMoistHygrometerReading(uint8_t index, u } /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -953,7 +953,7 @@ extern BOOL vscp_evt_measurement_sendFlow(uint8_t index, uint8_t unit, int32_t d } /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -977,7 +977,7 @@ extern BOOL vscp_evt_measurement_sendThermalResistance(uint8_t index, uint8_t un } /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1001,7 +1001,7 @@ extern BOOL vscp_evt_measurement_sendRefractiveOpticalPower(uint8_t index, uint8 } /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1025,7 +1025,7 @@ extern BOOL vscp_evt_measurement_sendDynamicViscosity(uint8_t index, uint8_t uni } /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1049,7 +1049,7 @@ extern BOOL vscp_evt_measurement_sendSoundImpedance(uint8_t index, uint8_t unit, } /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1073,7 +1073,7 @@ extern BOOL vscp_evt_measurement_sendSoundResistance(uint8_t index, uint8_t unit } /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1097,7 +1097,7 @@ extern BOOL vscp_evt_measurement_sendElectricElastance(uint8_t index, uint8_t un } /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1121,7 +1121,7 @@ extern BOOL vscp_evt_measurement_sendLuminousEnergy(uint8_t index, uint8_t unit, } /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1145,7 +1145,7 @@ extern BOOL vscp_evt_measurement_sendLuminance(uint8_t index, uint8_t unit, int3 } /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1171,7 +1171,7 @@ extern BOOL vscp_evt_measurement_sendChemicalConcentration(uint8_t index, uint8_ /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1197,7 +1197,7 @@ extern BOOL vscp_evt_measurement_sendDoseEquivalent(uint8_t index, uint8_t unit, /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1221,7 +1221,7 @@ extern BOOL vscp_evt_measurement_sendDewPoint(uint8_t index, uint8_t unit, int32 } /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1245,7 +1245,7 @@ extern BOOL vscp_evt_measurement_sendRelativeLevel(uint8_t index, uint8_t unit, } /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1269,7 +1269,7 @@ extern BOOL vscp_evt_measurement_sendAltitude(uint8_t index, uint8_t unit, int32 } /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1293,7 +1293,7 @@ extern BOOL vscp_evt_measurement_sendArea(uint8_t index, uint8_t unit, int32_t d } /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1317,7 +1317,7 @@ extern BOOL vscp_evt_measurement_sendRadiantIntensity(uint8_t index, uint8_t uni } /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1341,7 +1341,7 @@ extern BOOL vscp_evt_measurement_sendRadiance(uint8_t index, uint8_t unit, int32 } /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1365,7 +1365,7 @@ extern BOOL vscp_evt_measurement_sendIrradianceExitanceRadiosity(uint8_t index, } /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1389,7 +1389,7 @@ extern BOOL vscp_evt_measurement_sendSpectralRadiance(uint8_t index, uint8_t uni } /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1413,7 +1413,7 @@ extern BOOL vscp_evt_measurement_sendSpectralIrradiance(uint8_t index, uint8_t u } /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1437,7 +1437,7 @@ extern BOOL vscp_evt_measurement_sendSoundPressureAcousticPressure(uint8_t index } /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1461,7 +1461,7 @@ extern BOOL vscp_evt_measurement_sendSoundEnergyDensity(uint8_t index, uint8_t u } /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1485,7 +1485,7 @@ extern BOOL vscp_evt_measurement_sendSoundLevel(uint8_t index, uint8_t unit, int } /** - * Count + * Radiation dose (equivalent) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1509,7 +1509,7 @@ extern BOOL vscp_evt_measurement_sendRadiationDoseEquivalent(uint8_t index, uint } /** - * Count + * Radiation dose (exposure) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1533,7 +1533,7 @@ extern BOOL vscp_evt_measurement_sendRadiationDoseExposure(uint8_t index, uint8_ } /** - * Count + * Power factor * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -1556,3 +1556,51 @@ extern BOOL vscp_evt_measurement_sendPowerFactor(uint8_t index, uint8_t unit, in return vscp_core_sendEvent(&txMsg); } +/** + * Reactive Power + * + * @param[in] index Index for sensor. + * @param[in] unit The unit of the data. + * @param[in] data The data as signed integer. + * @param[in] exp The exponent of the data (10^exponent). + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_measurement_sendReactivePower(uint8_t index, uint8_t unit, int32_t data, int8_t exp) +{ + vscp_TxMessage txMsg; + + vscp_core_prepareTxMessage(&txMsg, VSCP_CLASS_L1_MEASUREMENT, VSCP_TYPE_MEASUREMENT_REACTIVE_POWER, VSCP_PRIORITY_3_NORMAL); + + txMsg.dataNum = 1; + txMsg.data[0] = vscp_data_coding_getFormatByte(VSCP_DATA_CODING_REPRESENTATION_NORMALIZED_INTEGER, unit, index); + + txMsg.dataNum += vscp_data_coding_int32ToNormalizedInteger(data, exp, &txMsg.data[1], VSCP_L1_DATA_SIZE - txMsg.dataNum); + + return vscp_core_sendEvent(&txMsg); +} + +/** + * Reactive Energy + * + * @param[in] index Index for sensor. + * @param[in] unit The unit of the data. + * @param[in] data The data as signed integer. + * @param[in] exp The exponent of the data (10^exponent). + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_measurement_sendReactiveEnergy(uint8_t index, uint8_t unit, int32_t data, int8_t exp) +{ + vscp_TxMessage txMsg; + + vscp_core_prepareTxMessage(&txMsg, VSCP_CLASS_L1_MEASUREMENT, VSCP_TYPE_MEASUREMENT_REACTIVE_ENERGY, VSCP_PRIORITY_3_NORMAL); + + txMsg.dataNum = 1; + txMsg.data[0] = vscp_data_coding_getFormatByte(VSCP_DATA_CODING_REPRESENTATION_NORMALIZED_INTEGER, unit, index); + + txMsg.dataNum += vscp_data_coding_int32ToNormalizedInteger(data, exp, &txMsg.data[1], VSCP_L1_DATA_SIZE - txMsg.dataNum); + + return vscp_core_sendEvent(&txMsg); +} + diff --git a/src/framework/events/vscp_evt_measurement.h b/src/framework/events/vscp_evt_measurement.h index 9f41c3e..7ac5825 100644 --- a/src/framework/events/vscp_evt_measurement.h +++ b/src/framework/events/vscp_evt_measurement.h @@ -94,7 +94,7 @@ extern BOOL vscp_evt_measurement_sendGeneralEvent(void); extern BOOL vscp_evt_measurement_sendCount(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -106,7 +106,7 @@ extern BOOL vscp_evt_measurement_sendCount(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendLengthDistance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -118,7 +118,7 @@ extern BOOL vscp_evt_measurement_sendLengthDistance(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendMass(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -130,7 +130,7 @@ extern BOOL vscp_evt_measurement_sendMass(uint8_t index, uint8_t unit, int32_t d extern BOOL vscp_evt_measurement_sendTime(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -142,7 +142,7 @@ extern BOOL vscp_evt_measurement_sendTime(uint8_t index, uint8_t unit, int32_t d extern BOOL vscp_evt_measurement_sendElectricCurrent(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -154,7 +154,7 @@ extern BOOL vscp_evt_measurement_sendElectricCurrent(uint8_t index, uint8_t unit extern BOOL vscp_evt_measurement_sendTemperature(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -166,7 +166,7 @@ extern BOOL vscp_evt_measurement_sendTemperature(uint8_t index, uint8_t unit, in extern BOOL vscp_evt_measurement_sendAmountOfSubstance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -178,7 +178,7 @@ extern BOOL vscp_evt_measurement_sendAmountOfSubstance(uint8_t index, uint8_t un extern BOOL vscp_evt_measurement_sendLuminousIntensityIntensityOfLight(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -190,7 +190,7 @@ extern BOOL vscp_evt_measurement_sendLuminousIntensityIntensityOfLight(uint8_t i extern BOOL vscp_evt_measurement_sendFrequency(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -202,7 +202,7 @@ extern BOOL vscp_evt_measurement_sendFrequency(uint8_t index, uint8_t unit, int3 extern BOOL vscp_evt_measurement_sendRadioactivityAndOtherRandomEvents(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -214,7 +214,7 @@ extern BOOL vscp_evt_measurement_sendRadioactivityAndOtherRandomEvents(uint8_t i extern BOOL vscp_evt_measurement_sendForce(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -226,7 +226,7 @@ extern BOOL vscp_evt_measurement_sendForce(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendPressure(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -238,7 +238,7 @@ extern BOOL vscp_evt_measurement_sendPressure(uint8_t index, uint8_t unit, int32 extern BOOL vscp_evt_measurement_sendEnergy(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -250,7 +250,7 @@ extern BOOL vscp_evt_measurement_sendEnergy(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendPower(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -262,7 +262,7 @@ extern BOOL vscp_evt_measurement_sendPower(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendElectricalCharge(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -274,7 +274,7 @@ extern BOOL vscp_evt_measurement_sendElectricalCharge(uint8_t index, uint8_t uni extern BOOL vscp_evt_measurement_sendElectricalPotentialVoltage(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -286,7 +286,7 @@ extern BOOL vscp_evt_measurement_sendElectricalPotentialVoltage(uint8_t index, u extern BOOL vscp_evt_measurement_sendElectricalCapacitance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -298,7 +298,7 @@ extern BOOL vscp_evt_measurement_sendElectricalCapacitance(uint8_t index, uint8_ extern BOOL vscp_evt_measurement_sendElectricalResistance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -310,7 +310,7 @@ extern BOOL vscp_evt_measurement_sendElectricalResistance(uint8_t index, uint8_t extern BOOL vscp_evt_measurement_sendElectricalConductance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -322,7 +322,7 @@ extern BOOL vscp_evt_measurement_sendElectricalConductance(uint8_t index, uint8_ extern BOOL vscp_evt_measurement_sendMagneticFieldStrength(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -334,7 +334,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFieldStrength(uint8_t index, uint8_ extern BOOL vscp_evt_measurement_sendMagneticFlux(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -346,7 +346,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFlux(uint8_t index, uint8_t unit, i extern BOOL vscp_evt_measurement_sendMagneticFluxDensity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -358,7 +358,7 @@ extern BOOL vscp_evt_measurement_sendMagneticFluxDensity(uint8_t index, uint8_t extern BOOL vscp_evt_measurement_sendInductance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -370,7 +370,7 @@ extern BOOL vscp_evt_measurement_sendInductance(uint8_t index, uint8_t unit, int extern BOOL vscp_evt_measurement_sendLuminousFlux(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -382,7 +382,7 @@ extern BOOL vscp_evt_measurement_sendLuminousFlux(uint8_t index, uint8_t unit, i extern BOOL vscp_evt_measurement_sendIlluminance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -394,7 +394,7 @@ extern BOOL vscp_evt_measurement_sendIlluminance(uint8_t index, uint8_t unit, in extern BOOL vscp_evt_measurement_sendRadiationDose(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -406,7 +406,7 @@ extern BOOL vscp_evt_measurement_sendRadiationDose(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendCatalyticActivity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -418,7 +418,7 @@ extern BOOL vscp_evt_measurement_sendCatalyticActivity(uint8_t index, uint8_t un extern BOOL vscp_evt_measurement_sendVolume(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -430,7 +430,7 @@ extern BOOL vscp_evt_measurement_sendVolume(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendSoundIntensity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Angle, direction or similar * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -439,10 +439,10 @@ extern BOOL vscp_evt_measurement_sendSoundIntensity(uint8_t index, uint8_t unit, * * @return If event is sent, it will return TRUE otherwise FALSE. */ -extern BOOL vscp_evt_measurement_sendAngle(uint8_t index, uint8_t unit, int32_t data, int8_t exp); +extern BOOL vscp_evt_measurement_sendAngleDirectionOrSimilar(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -454,7 +454,7 @@ extern BOOL vscp_evt_measurement_sendAngle(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendPositionWgs84(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -466,7 +466,7 @@ extern BOOL vscp_evt_measurement_sendPositionWgs84(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendSpeed(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -478,7 +478,7 @@ extern BOOL vscp_evt_measurement_sendSpeed(uint8_t index, uint8_t unit, int32_t extern BOOL vscp_evt_measurement_sendAcceleration(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -490,7 +490,7 @@ extern BOOL vscp_evt_measurement_sendAcceleration(uint8_t index, uint8_t unit, i extern BOOL vscp_evt_measurement_sendTension(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -502,7 +502,7 @@ extern BOOL vscp_evt_measurement_sendTension(uint8_t index, uint8_t unit, int32_ extern BOOL vscp_evt_measurement_sendDampMoistHygrometerReading(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -514,7 +514,7 @@ extern BOOL vscp_evt_measurement_sendDampMoistHygrometerReading(uint8_t index, u extern BOOL vscp_evt_measurement_sendFlow(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -526,7 +526,7 @@ extern BOOL vscp_evt_measurement_sendFlow(uint8_t index, uint8_t unit, int32_t d extern BOOL vscp_evt_measurement_sendThermalResistance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -538,7 +538,7 @@ extern BOOL vscp_evt_measurement_sendThermalResistance(uint8_t index, uint8_t un extern BOOL vscp_evt_measurement_sendRefractiveOpticalPower(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -550,7 +550,7 @@ extern BOOL vscp_evt_measurement_sendRefractiveOpticalPower(uint8_t index, uint8 extern BOOL vscp_evt_measurement_sendDynamicViscosity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -562,7 +562,7 @@ extern BOOL vscp_evt_measurement_sendDynamicViscosity(uint8_t index, uint8_t uni extern BOOL vscp_evt_measurement_sendSoundImpedance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -574,7 +574,7 @@ extern BOOL vscp_evt_measurement_sendSoundImpedance(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendSoundResistance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -586,7 +586,7 @@ extern BOOL vscp_evt_measurement_sendSoundResistance(uint8_t index, uint8_t unit extern BOOL vscp_evt_measurement_sendElectricElastance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -598,7 +598,7 @@ extern BOOL vscp_evt_measurement_sendElectricElastance(uint8_t index, uint8_t un extern BOOL vscp_evt_measurement_sendLuminousEnergy(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -610,7 +610,7 @@ extern BOOL vscp_evt_measurement_sendLuminousEnergy(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendLuminance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -624,7 +624,7 @@ extern BOOL vscp_evt_measurement_sendChemicalConcentration(uint8_t index, uint8_ /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -638,7 +638,7 @@ extern BOOL vscp_evt_measurement_sendDoseEquivalent(uint8_t index, uint8_t unit, /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -650,7 +650,7 @@ extern BOOL vscp_evt_measurement_sendDoseEquivalent(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendDewPoint(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -662,7 +662,7 @@ extern BOOL vscp_evt_measurement_sendDewPoint(uint8_t index, uint8_t unit, int32 extern BOOL vscp_evt_measurement_sendRelativeLevel(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -674,7 +674,7 @@ extern BOOL vscp_evt_measurement_sendRelativeLevel(uint8_t index, uint8_t unit, extern BOOL vscp_evt_measurement_sendAltitude(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -686,7 +686,7 @@ extern BOOL vscp_evt_measurement_sendAltitude(uint8_t index, uint8_t unit, int32 extern BOOL vscp_evt_measurement_sendArea(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -698,7 +698,7 @@ extern BOOL vscp_evt_measurement_sendArea(uint8_t index, uint8_t unit, int32_t d extern BOOL vscp_evt_measurement_sendRadiantIntensity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -710,7 +710,7 @@ extern BOOL vscp_evt_measurement_sendRadiantIntensity(uint8_t index, uint8_t uni extern BOOL vscp_evt_measurement_sendRadiance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -722,7 +722,7 @@ extern BOOL vscp_evt_measurement_sendRadiance(uint8_t index, uint8_t unit, int32 extern BOOL vscp_evt_measurement_sendIrradianceExitanceRadiosity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -734,7 +734,7 @@ extern BOOL vscp_evt_measurement_sendIrradianceExitanceRadiosity(uint8_t index, extern BOOL vscp_evt_measurement_sendSpectralRadiance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -746,7 +746,7 @@ extern BOOL vscp_evt_measurement_sendSpectralRadiance(uint8_t index, uint8_t uni extern BOOL vscp_evt_measurement_sendSpectralIrradiance(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -758,7 +758,7 @@ extern BOOL vscp_evt_measurement_sendSpectralIrradiance(uint8_t index, uint8_t u extern BOOL vscp_evt_measurement_sendSoundPressureAcousticPressure(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -770,7 +770,7 @@ extern BOOL vscp_evt_measurement_sendSoundPressureAcousticPressure(uint8_t index extern BOOL vscp_evt_measurement_sendSoundEnergyDensity(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -782,7 +782,7 @@ extern BOOL vscp_evt_measurement_sendSoundEnergyDensity(uint8_t index, uint8_t u extern BOOL vscp_evt_measurement_sendSoundLevel(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radiation dose (equivalent) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -794,7 +794,7 @@ extern BOOL vscp_evt_measurement_sendSoundLevel(uint8_t index, uint8_t unit, int extern BOOL vscp_evt_measurement_sendRadiationDoseEquivalent(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Radiation dose (exposure) * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -806,7 +806,7 @@ extern BOOL vscp_evt_measurement_sendRadiationDoseEquivalent(uint8_t index, uint extern BOOL vscp_evt_measurement_sendRadiationDoseExposure(uint8_t index, uint8_t unit, int32_t data, int8_t exp); /** - * Count + * Power factor * * @param[in] index Index for sensor. * @param[in] unit The unit of the data. @@ -817,4 +817,28 @@ extern BOOL vscp_evt_measurement_sendRadiationDoseExposure(uint8_t index, uint8_ */ extern BOOL vscp_evt_measurement_sendPowerFactor(uint8_t index, uint8_t unit, int32_t data, int8_t exp); +/** + * Reactive Power + * + * @param[in] index Index for sensor. + * @param[in] unit The unit of the data. + * @param[in] data The data as signed integer. + * @param[in] exp The exponent of the data (10^exponent). + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_measurement_sendReactivePower(uint8_t index, uint8_t unit, int32_t data, int8_t exp); + +/** + * Reactive Energy + * + * @param[in] index Index for sensor. + * @param[in] unit The unit of the data. + * @param[in] data The data as signed integer. + * @param[in] exp The exponent of the data (10^exponent). + * + * @return If event is sent, it will return TRUE otherwise FALSE. + */ +extern BOOL vscp_evt_measurement_sendReactiveEnergy(uint8_t index, uint8_t unit, int32_t data, int8_t exp); + #endif /* __VSCP_EVT_MEASUREMENT_H__ */ diff --git a/src/framework/events/vscp_evt_measurement32.c b/src/framework/events/vscp_evt_measurement32.c index 6977028..e1d140f 100644 --- a/src/framework/events/vscp_evt_measurement32.c +++ b/src/framework/events/vscp_evt_measurement32.c @@ -113,7 +113,7 @@ extern BOOL vscp_evt_measurement32_sendCount(float_t value) } /** - * Count + * Length/Distance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -138,7 +138,7 @@ extern BOOL vscp_evt_measurement32_sendLengthDistance(float_t value) } /** - * Count + * Mass * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -163,7 +163,7 @@ extern BOOL vscp_evt_measurement32_sendMass(float_t value) } /** - * Count + * Time * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -188,7 +188,7 @@ extern BOOL vscp_evt_measurement32_sendTime(float_t value) } /** - * Count + * Electric Current * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -213,7 +213,7 @@ extern BOOL vscp_evt_measurement32_sendElectricCurrent(float_t value) } /** - * Count + * Temperature * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -238,7 +238,7 @@ extern BOOL vscp_evt_measurement32_sendTemperature(float_t value) } /** - * Count + * Amount of substance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -263,7 +263,7 @@ extern BOOL vscp_evt_measurement32_sendAmountOfSubstance(float_t value) } /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -288,7 +288,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousIntensityIntensityOfLight(float_t } /** - * Count + * Frequency * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -313,7 +313,7 @@ extern BOOL vscp_evt_measurement32_sendFrequency(float_t value) } /** - * Count + * Radioactivity and other random events * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -338,7 +338,7 @@ extern BOOL vscp_evt_measurement32_sendRadioactivityAndOtherRandomEvents(float_t } /** - * Count + * Force * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -363,7 +363,7 @@ extern BOOL vscp_evt_measurement32_sendForce(float_t value) } /** - * Count + * Pressure * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -388,7 +388,7 @@ extern BOOL vscp_evt_measurement32_sendPressure(float_t value) } /** - * Count + * Energy * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -413,7 +413,7 @@ extern BOOL vscp_evt_measurement32_sendEnergy(float_t value) } /** - * Count + * Power * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -438,7 +438,7 @@ extern BOOL vscp_evt_measurement32_sendPower(float_t value) } /** - * Count + * Electrical Charge * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -463,7 +463,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalCharge(float_t value) } /** - * Count + * Electrical Potential (Voltage) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -488,7 +488,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalPotentialVoltage(float_t value) } /** - * Count + * Electrical Capacitance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -513,7 +513,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalCapacitance(float_t value) } /** - * Count + * Electrical Resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -538,7 +538,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalResistance(float_t value) } /** - * Count + * Electrical Conductance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -563,7 +563,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalConductance(float_t value) } /** - * Count + * Magnetic Field Strength * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -588,7 +588,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFieldStrength(float_t value) } /** - * Count + * Magnetic Flux * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -613,7 +613,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFlux(float_t value) } /** - * Count + * Magnetic Flux Density * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -638,7 +638,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFluxDensity(float_t value) } /** - * Count + * Inductance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -663,7 +663,7 @@ extern BOOL vscp_evt_measurement32_sendInductance(float_t value) } /** - * Count + * Luminous Flux * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -688,7 +688,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousFlux(float_t value) } /** - * Count + * Illuminance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -713,7 +713,7 @@ extern BOOL vscp_evt_measurement32_sendIlluminance(float_t value) } /** - * Count + * Radiation dose * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -738,7 +738,7 @@ extern BOOL vscp_evt_measurement32_sendRadiationDose(float_t value) } /** - * Count + * Catalytic activity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -763,7 +763,7 @@ extern BOOL vscp_evt_measurement32_sendCatalyticActivity(float_t value) } /** - * Count + * Volume * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -788,7 +788,7 @@ extern BOOL vscp_evt_measurement32_sendVolume(float_t value) } /** - * Count + * Sound intensity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -813,7 +813,7 @@ extern BOOL vscp_evt_measurement32_sendSoundIntensity(float_t value) } /** - * Count + * Angle * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -838,7 +838,7 @@ extern BOOL vscp_evt_measurement32_sendAngle(float_t value) } /** - * Count + * Position WGS 84 * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -863,7 +863,7 @@ extern BOOL vscp_evt_measurement32_sendPositionWgs84(float_t value) } /** - * Count + * Speed * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -888,7 +888,7 @@ extern BOOL vscp_evt_measurement32_sendSpeed(float_t value) } /** - * Count + * Acceleration * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -913,7 +913,7 @@ extern BOOL vscp_evt_measurement32_sendAcceleration(float_t value) } /** - * Count + * Tension * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -938,7 +938,7 @@ extern BOOL vscp_evt_measurement32_sendTension(float_t value) } /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -963,7 +963,7 @@ extern BOOL vscp_evt_measurement32_sendDampMoistHygrometerReading(float_t value) } /** - * Count + * Flow * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -988,7 +988,7 @@ extern BOOL vscp_evt_measurement32_sendFlow(float_t value) } /** - * Count + * Thermal resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1013,7 +1013,7 @@ extern BOOL vscp_evt_measurement32_sendThermalResistance(float_t value) } /** - * Count + * Refractive (optical) power * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1038,7 +1038,7 @@ extern BOOL vscp_evt_measurement32_sendRefractiveOpticalPower(float_t value) } /** - * Count + * Dynamic viscosity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1063,7 +1063,7 @@ extern BOOL vscp_evt_measurement32_sendDynamicViscosity(float_t value) } /** - * Count + * Sound impedance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1088,7 +1088,7 @@ extern BOOL vscp_evt_measurement32_sendSoundImpedance(float_t value) } /** - * Count + * Sound resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1113,7 +1113,7 @@ extern BOOL vscp_evt_measurement32_sendSoundResistance(float_t value) } /** - * Count + * Electric elastance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1138,7 +1138,7 @@ extern BOOL vscp_evt_measurement32_sendElectricElastance(float_t value) } /** - * Count + * Luminous energy * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1163,7 +1163,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousEnergy(float_t value) } /** - * Count + * Luminance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1188,7 +1188,7 @@ extern BOOL vscp_evt_measurement32_sendLuminance(float_t value) } /** - * Count + * Chemical concentration * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1215,7 +1215,7 @@ extern BOOL vscp_evt_measurement32_sendChemicalConcentration(float_t value) /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1242,7 +1242,7 @@ extern BOOL vscp_evt_measurement32_sendDoseEquivalent(float_t value) /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1267,7 +1267,7 @@ extern BOOL vscp_evt_measurement32_sendDewPoint(float_t value) } /** - * Count + * Relative Level * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1292,7 +1292,7 @@ extern BOOL vscp_evt_measurement32_sendRelativeLevel(float_t value) } /** - * Count + * Altitude * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1317,7 +1317,7 @@ extern BOOL vscp_evt_measurement32_sendAltitude(float_t value) } /** - * Count + * Area * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1342,7 +1342,7 @@ extern BOOL vscp_evt_measurement32_sendArea(float_t value) } /** - * Count + * Radiant intensity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1367,7 +1367,7 @@ extern BOOL vscp_evt_measurement32_sendRadiantIntensity(float_t value) } /** - * Count + * Radiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1392,7 +1392,7 @@ extern BOOL vscp_evt_measurement32_sendRadiance(float_t value) } /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1417,7 +1417,7 @@ extern BOOL vscp_evt_measurement32_sendIrradianceExitanceRadiosity(float_t value } /** - * Count + * Spectral radiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1442,7 +1442,7 @@ extern BOOL vscp_evt_measurement32_sendSpectralRadiance(float_t value) } /** - * Count + * Spectral irradiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1467,7 +1467,7 @@ extern BOOL vscp_evt_measurement32_sendSpectralIrradiance(float_t value) } /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1492,7 +1492,7 @@ extern BOOL vscp_evt_measurement32_sendSoundPressureAcousticPressure(float_t val } /** - * Count + * Sound energy density * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -1517,7 +1517,7 @@ extern BOOL vscp_evt_measurement32_sendSoundEnergyDensity(float_t value) } /** - * Count + * Sound level * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * diff --git a/src/framework/events/vscp_evt_measurement32.h b/src/framework/events/vscp_evt_measurement32.h index 4166605..e8a3700 100644 --- a/src/framework/events/vscp_evt_measurement32.h +++ b/src/framework/events/vscp_evt_measurement32.h @@ -91,7 +91,7 @@ extern BOOL vscp_evt_measurement32_sendGeneralEvent(void); extern BOOL vscp_evt_measurement32_sendCount(float_t value); /** - * Count + * Length/Distance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -100,7 +100,7 @@ extern BOOL vscp_evt_measurement32_sendCount(float_t value); extern BOOL vscp_evt_measurement32_sendLengthDistance(float_t value); /** - * Count + * Mass * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -109,7 +109,7 @@ extern BOOL vscp_evt_measurement32_sendLengthDistance(float_t value); extern BOOL vscp_evt_measurement32_sendMass(float_t value); /** - * Count + * Time * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -118,7 +118,7 @@ extern BOOL vscp_evt_measurement32_sendMass(float_t value); extern BOOL vscp_evt_measurement32_sendTime(float_t value); /** - * Count + * Electric Current * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -127,7 +127,7 @@ extern BOOL vscp_evt_measurement32_sendTime(float_t value); extern BOOL vscp_evt_measurement32_sendElectricCurrent(float_t value); /** - * Count + * Temperature * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -136,7 +136,7 @@ extern BOOL vscp_evt_measurement32_sendElectricCurrent(float_t value); extern BOOL vscp_evt_measurement32_sendTemperature(float_t value); /** - * Count + * Amount of substance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -145,7 +145,7 @@ extern BOOL vscp_evt_measurement32_sendTemperature(float_t value); extern BOOL vscp_evt_measurement32_sendAmountOfSubstance(float_t value); /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -154,7 +154,7 @@ extern BOOL vscp_evt_measurement32_sendAmountOfSubstance(float_t value); extern BOOL vscp_evt_measurement32_sendLuminousIntensityIntensityOfLight(float_t value); /** - * Count + * Frequency * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -163,7 +163,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousIntensityIntensityOfLight(float_t extern BOOL vscp_evt_measurement32_sendFrequency(float_t value); /** - * Count + * Radioactivity and other random events * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -172,7 +172,7 @@ extern BOOL vscp_evt_measurement32_sendFrequency(float_t value); extern BOOL vscp_evt_measurement32_sendRadioactivityAndOtherRandomEvents(float_t value); /** - * Count + * Force * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -181,7 +181,7 @@ extern BOOL vscp_evt_measurement32_sendRadioactivityAndOtherRandomEvents(float_t extern BOOL vscp_evt_measurement32_sendForce(float_t value); /** - * Count + * Pressure * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -190,7 +190,7 @@ extern BOOL vscp_evt_measurement32_sendForce(float_t value); extern BOOL vscp_evt_measurement32_sendPressure(float_t value); /** - * Count + * Energy * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -199,7 +199,7 @@ extern BOOL vscp_evt_measurement32_sendPressure(float_t value); extern BOOL vscp_evt_measurement32_sendEnergy(float_t value); /** - * Count + * Power * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -208,7 +208,7 @@ extern BOOL vscp_evt_measurement32_sendEnergy(float_t value); extern BOOL vscp_evt_measurement32_sendPower(float_t value); /** - * Count + * Electrical Charge * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -217,7 +217,7 @@ extern BOOL vscp_evt_measurement32_sendPower(float_t value); extern BOOL vscp_evt_measurement32_sendElectricalCharge(float_t value); /** - * Count + * Electrical Potential (Voltage) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -226,7 +226,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalCharge(float_t value); extern BOOL vscp_evt_measurement32_sendElectricalPotentialVoltage(float_t value); /** - * Count + * Electrical Capacitance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -235,7 +235,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalPotentialVoltage(float_t value) extern BOOL vscp_evt_measurement32_sendElectricalCapacitance(float_t value); /** - * Count + * Electrical Resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -244,7 +244,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalCapacitance(float_t value); extern BOOL vscp_evt_measurement32_sendElectricalResistance(float_t value); /** - * Count + * Electrical Conductance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -253,7 +253,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalResistance(float_t value); extern BOOL vscp_evt_measurement32_sendElectricalConductance(float_t value); /** - * Count + * Magnetic Field Strength * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -262,7 +262,7 @@ extern BOOL vscp_evt_measurement32_sendElectricalConductance(float_t value); extern BOOL vscp_evt_measurement32_sendMagneticFieldStrength(float_t value); /** - * Count + * Magnetic Flux * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -271,7 +271,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFieldStrength(float_t value); extern BOOL vscp_evt_measurement32_sendMagneticFlux(float_t value); /** - * Count + * Magnetic Flux Density * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -280,7 +280,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFlux(float_t value); extern BOOL vscp_evt_measurement32_sendMagneticFluxDensity(float_t value); /** - * Count + * Inductance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -289,7 +289,7 @@ extern BOOL vscp_evt_measurement32_sendMagneticFluxDensity(float_t value); extern BOOL vscp_evt_measurement32_sendInductance(float_t value); /** - * Count + * Luminous Flux * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -298,7 +298,7 @@ extern BOOL vscp_evt_measurement32_sendInductance(float_t value); extern BOOL vscp_evt_measurement32_sendLuminousFlux(float_t value); /** - * Count + * Illuminance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -307,7 +307,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousFlux(float_t value); extern BOOL vscp_evt_measurement32_sendIlluminance(float_t value); /** - * Count + * Radiation dose * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -316,7 +316,7 @@ extern BOOL vscp_evt_measurement32_sendIlluminance(float_t value); extern BOOL vscp_evt_measurement32_sendRadiationDose(float_t value); /** - * Count + * Catalytic activity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -325,7 +325,7 @@ extern BOOL vscp_evt_measurement32_sendRadiationDose(float_t value); extern BOOL vscp_evt_measurement32_sendCatalyticActivity(float_t value); /** - * Count + * Volume * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -334,7 +334,7 @@ extern BOOL vscp_evt_measurement32_sendCatalyticActivity(float_t value); extern BOOL vscp_evt_measurement32_sendVolume(float_t value); /** - * Count + * Sound intensity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -343,7 +343,7 @@ extern BOOL vscp_evt_measurement32_sendVolume(float_t value); extern BOOL vscp_evt_measurement32_sendSoundIntensity(float_t value); /** - * Count + * Angle * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -352,7 +352,7 @@ extern BOOL vscp_evt_measurement32_sendSoundIntensity(float_t value); extern BOOL vscp_evt_measurement32_sendAngle(float_t value); /** - * Count + * Position WGS 84 * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -361,7 +361,7 @@ extern BOOL vscp_evt_measurement32_sendAngle(float_t value); extern BOOL vscp_evt_measurement32_sendPositionWgs84(float_t value); /** - * Count + * Speed * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -370,7 +370,7 @@ extern BOOL vscp_evt_measurement32_sendPositionWgs84(float_t value); extern BOOL vscp_evt_measurement32_sendSpeed(float_t value); /** - * Count + * Acceleration * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -379,7 +379,7 @@ extern BOOL vscp_evt_measurement32_sendSpeed(float_t value); extern BOOL vscp_evt_measurement32_sendAcceleration(float_t value); /** - * Count + * Tension * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -388,7 +388,7 @@ extern BOOL vscp_evt_measurement32_sendAcceleration(float_t value); extern BOOL vscp_evt_measurement32_sendTension(float_t value); /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -397,7 +397,7 @@ extern BOOL vscp_evt_measurement32_sendTension(float_t value); extern BOOL vscp_evt_measurement32_sendDampMoistHygrometerReading(float_t value); /** - * Count + * Flow * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -406,7 +406,7 @@ extern BOOL vscp_evt_measurement32_sendDampMoistHygrometerReading(float_t value) extern BOOL vscp_evt_measurement32_sendFlow(float_t value); /** - * Count + * Thermal resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -415,7 +415,7 @@ extern BOOL vscp_evt_measurement32_sendFlow(float_t value); extern BOOL vscp_evt_measurement32_sendThermalResistance(float_t value); /** - * Count + * Refractive (optical) power * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -424,7 +424,7 @@ extern BOOL vscp_evt_measurement32_sendThermalResistance(float_t value); extern BOOL vscp_evt_measurement32_sendRefractiveOpticalPower(float_t value); /** - * Count + * Dynamic viscosity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -433,7 +433,7 @@ extern BOOL vscp_evt_measurement32_sendRefractiveOpticalPower(float_t value); extern BOOL vscp_evt_measurement32_sendDynamicViscosity(float_t value); /** - * Count + * Sound impedance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -442,7 +442,7 @@ extern BOOL vscp_evt_measurement32_sendDynamicViscosity(float_t value); extern BOOL vscp_evt_measurement32_sendSoundImpedance(float_t value); /** - * Count + * Sound resistance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -451,7 +451,7 @@ extern BOOL vscp_evt_measurement32_sendSoundImpedance(float_t value); extern BOOL vscp_evt_measurement32_sendSoundResistance(float_t value); /** - * Count + * Electric elastance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -460,7 +460,7 @@ extern BOOL vscp_evt_measurement32_sendSoundResistance(float_t value); extern BOOL vscp_evt_measurement32_sendElectricElastance(float_t value); /** - * Count + * Luminous energy * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -469,7 +469,7 @@ extern BOOL vscp_evt_measurement32_sendElectricElastance(float_t value); extern BOOL vscp_evt_measurement32_sendLuminousEnergy(float_t value); /** - * Count + * Luminance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -478,7 +478,7 @@ extern BOOL vscp_evt_measurement32_sendLuminousEnergy(float_t value); extern BOOL vscp_evt_measurement32_sendLuminance(float_t value); /** - * Count + * Chemical concentration * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -489,7 +489,7 @@ extern BOOL vscp_evt_measurement32_sendChemicalConcentration(float_t value); /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -500,7 +500,7 @@ extern BOOL vscp_evt_measurement32_sendDoseEquivalent(float_t value); /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -509,7 +509,7 @@ extern BOOL vscp_evt_measurement32_sendDoseEquivalent(float_t value); extern BOOL vscp_evt_measurement32_sendDewPoint(float_t value); /** - * Count + * Relative Level * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -518,7 +518,7 @@ extern BOOL vscp_evt_measurement32_sendDewPoint(float_t value); extern BOOL vscp_evt_measurement32_sendRelativeLevel(float_t value); /** - * Count + * Altitude * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -527,7 +527,7 @@ extern BOOL vscp_evt_measurement32_sendRelativeLevel(float_t value); extern BOOL vscp_evt_measurement32_sendAltitude(float_t value); /** - * Count + * Area * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -536,7 +536,7 @@ extern BOOL vscp_evt_measurement32_sendAltitude(float_t value); extern BOOL vscp_evt_measurement32_sendArea(float_t value); /** - * Count + * Radiant intensity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -545,7 +545,7 @@ extern BOOL vscp_evt_measurement32_sendArea(float_t value); extern BOOL vscp_evt_measurement32_sendRadiantIntensity(float_t value); /** - * Count + * Radiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -554,7 +554,7 @@ extern BOOL vscp_evt_measurement32_sendRadiantIntensity(float_t value); extern BOOL vscp_evt_measurement32_sendRadiance(float_t value); /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -563,7 +563,7 @@ extern BOOL vscp_evt_measurement32_sendRadiance(float_t value); extern BOOL vscp_evt_measurement32_sendIrradianceExitanceRadiosity(float_t value); /** - * Count + * Spectral radiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -572,7 +572,7 @@ extern BOOL vscp_evt_measurement32_sendIrradianceExitanceRadiosity(float_t value extern BOOL vscp_evt_measurement32_sendSpectralRadiance(float_t value); /** - * Count + * Spectral irradiance * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -581,7 +581,7 @@ extern BOOL vscp_evt_measurement32_sendSpectralRadiance(float_t value); extern BOOL vscp_evt_measurement32_sendSpectralIrradiance(float_t value); /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -590,7 +590,7 @@ extern BOOL vscp_evt_measurement32_sendSpectralIrradiance(float_t value); extern BOOL vscp_evt_measurement32_sendSoundPressureAcousticPressure(float_t value); /** - * Count + * Sound energy density * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * @@ -599,7 +599,7 @@ extern BOOL vscp_evt_measurement32_sendSoundPressureAcousticPressure(float_t val extern BOOL vscp_evt_measurement32_sendSoundEnergyDensity(float_t value); /** - * Count + * Sound level * * @param[in] value The value is a "float" - IEEE-754, 32 Bits, single precision. * diff --git a/src/framework/events/vscp_evt_measurement64.c b/src/framework/events/vscp_evt_measurement64.c index 03e83c3..fa3ef5a 100644 --- a/src/framework/events/vscp_evt_measurement64.c +++ b/src/framework/events/vscp_evt_measurement64.c @@ -117,7 +117,7 @@ extern BOOL vscp_evt_measurement64_sendCount(double_t value) } /** - * Count + * Length/Distance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -146,7 +146,7 @@ extern BOOL vscp_evt_measurement64_sendLengthDistance(double_t value) } /** - * Count + * Mass * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -175,7 +175,7 @@ extern BOOL vscp_evt_measurement64_sendMass(double_t value) } /** - * Count + * Time * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -204,7 +204,7 @@ extern BOOL vscp_evt_measurement64_sendTime(double_t value) } /** - * Count + * Electric Current * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -233,7 +233,7 @@ extern BOOL vscp_evt_measurement64_sendElectricCurrent(double_t value) } /** - * Count + * Temperature * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -262,7 +262,7 @@ extern BOOL vscp_evt_measurement64_sendTemperature(double_t value) } /** - * Count + * Amount of substance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -291,7 +291,7 @@ extern BOOL vscp_evt_measurement64_sendAmountOfSubstance(double_t value) } /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -320,7 +320,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousIntensityIntensityOfLight(double_ } /** - * Count + * Frequency * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -349,7 +349,7 @@ extern BOOL vscp_evt_measurement64_sendFrequency(double_t value) } /** - * Count + * Radioactivity and other random events * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -378,7 +378,7 @@ extern BOOL vscp_evt_measurement64_sendRadioactivityAndOtherRandomEvents(double_ } /** - * Count + * Force * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -407,7 +407,7 @@ extern BOOL vscp_evt_measurement64_sendForce(double_t value) } /** - * Count + * Pressure * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -436,7 +436,7 @@ extern BOOL vscp_evt_measurement64_sendPressure(double_t value) } /** - * Count + * Energy * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -465,7 +465,7 @@ extern BOOL vscp_evt_measurement64_sendEnergy(double_t value) } /** - * Count + * Power * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -494,7 +494,7 @@ extern BOOL vscp_evt_measurement64_sendPower(double_t value) } /** - * Count + * Electrical Charge * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -523,7 +523,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalCharge(double_t value) } /** - * Count + * Electrical Potential (Voltage) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -552,7 +552,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalPotentialVoltage(double_t value } /** - * Count + * Electrical Capacitance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -581,7 +581,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalCapacitance(double_t value) } /** - * Count + * Electrical Resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -610,7 +610,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalResistance(double_t value) } /** - * Count + * Electrical Conductance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -639,7 +639,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalConductance(double_t value) } /** - * Count + * Magnetic Field Strength * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -668,7 +668,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFieldStrength(double_t value) } /** - * Count + * Magnetic Flux * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -697,7 +697,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFlux(double_t value) } /** - * Count + * Magnetic Flux Density * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -726,7 +726,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFluxDensity(double_t value) } /** - * Count + * Inductance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -755,7 +755,7 @@ extern BOOL vscp_evt_measurement64_sendInductance(double_t value) } /** - * Count + * Luminous Flux * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -784,7 +784,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousFlux(double_t value) } /** - * Count + * Illuminance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -813,7 +813,7 @@ extern BOOL vscp_evt_measurement64_sendIlluminance(double_t value) } /** - * Count + * Radiation dose * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -842,7 +842,7 @@ extern BOOL vscp_evt_measurement64_sendRadiationDose(double_t value) } /** - * Count + * Catalytic activity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -871,7 +871,7 @@ extern BOOL vscp_evt_measurement64_sendCatalyticActivity(double_t value) } /** - * Count + * Volume * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -900,7 +900,7 @@ extern BOOL vscp_evt_measurement64_sendVolume(double_t value) } /** - * Count + * Sound intensity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -929,7 +929,7 @@ extern BOOL vscp_evt_measurement64_sendSoundIntensity(double_t value) } /** - * Count + * Angle * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -958,7 +958,7 @@ extern BOOL vscp_evt_measurement64_sendAngle(double_t value) } /** - * Count + * Position WGS 84 * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -987,7 +987,7 @@ extern BOOL vscp_evt_measurement64_sendPositionWgs84(double_t value) } /** - * Count + * Speed * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1016,7 +1016,7 @@ extern BOOL vscp_evt_measurement64_sendSpeed(double_t value) } /** - * Count + * Acceleration * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1045,7 +1045,7 @@ extern BOOL vscp_evt_measurement64_sendAcceleration(double_t value) } /** - * Count + * Tension * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1074,7 +1074,7 @@ extern BOOL vscp_evt_measurement64_sendTension(double_t value) } /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1103,7 +1103,7 @@ extern BOOL vscp_evt_measurement64_sendDampMoistHygrometerReading(double_t value } /** - * Count + * Flow * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1132,7 +1132,7 @@ extern BOOL vscp_evt_measurement64_sendFlow(double_t value) } /** - * Count + * Thermal resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1161,7 +1161,7 @@ extern BOOL vscp_evt_measurement64_sendThermalResistance(double_t value) } /** - * Count + * Refractive (optical) power * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1190,7 +1190,7 @@ extern BOOL vscp_evt_measurement64_sendRefractiveOpticalPower(double_t value) } /** - * Count + * Dynamic viscosity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1219,7 +1219,7 @@ extern BOOL vscp_evt_measurement64_sendDynamicViscosity(double_t value) } /** - * Count + * Sound impedance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1248,7 +1248,7 @@ extern BOOL vscp_evt_measurement64_sendSoundImpedance(double_t value) } /** - * Count + * Sound resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1277,7 +1277,7 @@ extern BOOL vscp_evt_measurement64_sendSoundResistance(double_t value) } /** - * Count + * Electric elastance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1306,7 +1306,7 @@ extern BOOL vscp_evt_measurement64_sendElectricElastance(double_t value) } /** - * Count + * Luminous energy * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1335,7 +1335,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousEnergy(double_t value) } /** - * Count + * Luminance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1364,7 +1364,7 @@ extern BOOL vscp_evt_measurement64_sendLuminance(double_t value) } /** - * Count + * Chemical concentration * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1395,7 +1395,7 @@ extern BOOL vscp_evt_measurement64_sendChemicalConcentration(double_t value) /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1426,7 +1426,7 @@ extern BOOL vscp_evt_measurement64_sendDoseEquivalent(double_t value) /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1455,7 +1455,7 @@ extern BOOL vscp_evt_measurement64_sendDewPoint(double_t value) } /** - * Count + * Relative Level * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1484,7 +1484,7 @@ extern BOOL vscp_evt_measurement64_sendRelativeLevel(double_t value) } /** - * Count + * Altitude * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1513,7 +1513,7 @@ extern BOOL vscp_evt_measurement64_sendAltitude(double_t value) } /** - * Count + * Area * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1542,7 +1542,7 @@ extern BOOL vscp_evt_measurement64_sendArea(double_t value) } /** - * Count + * Radiant intensity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1571,7 +1571,7 @@ extern BOOL vscp_evt_measurement64_sendRadiantIntensity(double_t value) } /** - * Count + * Radiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1600,7 +1600,7 @@ extern BOOL vscp_evt_measurement64_sendRadiance(double_t value) } /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1629,7 +1629,7 @@ extern BOOL vscp_evt_measurement64_sendIrradianceExitanceRadiosity(double_t valu } /** - * Count + * Spectral radiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1658,7 +1658,7 @@ extern BOOL vscp_evt_measurement64_sendSpectralRadiance(double_t value) } /** - * Count + * Spectral irradiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1687,7 +1687,7 @@ extern BOOL vscp_evt_measurement64_sendSpectralIrradiance(double_t value) } /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1716,7 +1716,7 @@ extern BOOL vscp_evt_measurement64_sendSoundPressureAcousticPressure(double_t va } /** - * Count + * Sound energy density * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -1745,7 +1745,7 @@ extern BOOL vscp_evt_measurement64_sendSoundEnergyDensity(double_t value) } /** - * Count + * Sound level * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * diff --git a/src/framework/events/vscp_evt_measurement64.h b/src/framework/events/vscp_evt_measurement64.h index 70deeaf..1a73a0b 100644 --- a/src/framework/events/vscp_evt_measurement64.h +++ b/src/framework/events/vscp_evt_measurement64.h @@ -91,7 +91,7 @@ extern BOOL vscp_evt_measurement64_sendGeneralEvent(void); extern BOOL vscp_evt_measurement64_sendCount(double_t value); /** - * Count + * Length/Distance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -100,7 +100,7 @@ extern BOOL vscp_evt_measurement64_sendCount(double_t value); extern BOOL vscp_evt_measurement64_sendLengthDistance(double_t value); /** - * Count + * Mass * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -109,7 +109,7 @@ extern BOOL vscp_evt_measurement64_sendLengthDistance(double_t value); extern BOOL vscp_evt_measurement64_sendMass(double_t value); /** - * Count + * Time * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -118,7 +118,7 @@ extern BOOL vscp_evt_measurement64_sendMass(double_t value); extern BOOL vscp_evt_measurement64_sendTime(double_t value); /** - * Count + * Electric Current * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -127,7 +127,7 @@ extern BOOL vscp_evt_measurement64_sendTime(double_t value); extern BOOL vscp_evt_measurement64_sendElectricCurrent(double_t value); /** - * Count + * Temperature * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -136,7 +136,7 @@ extern BOOL vscp_evt_measurement64_sendElectricCurrent(double_t value); extern BOOL vscp_evt_measurement64_sendTemperature(double_t value); /** - * Count + * Amount of substance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -145,7 +145,7 @@ extern BOOL vscp_evt_measurement64_sendTemperature(double_t value); extern BOOL vscp_evt_measurement64_sendAmountOfSubstance(double_t value); /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -154,7 +154,7 @@ extern BOOL vscp_evt_measurement64_sendAmountOfSubstance(double_t value); extern BOOL vscp_evt_measurement64_sendLuminousIntensityIntensityOfLight(double_t value); /** - * Count + * Frequency * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -163,7 +163,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousIntensityIntensityOfLight(double_ extern BOOL vscp_evt_measurement64_sendFrequency(double_t value); /** - * Count + * Radioactivity and other random events * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -172,7 +172,7 @@ extern BOOL vscp_evt_measurement64_sendFrequency(double_t value); extern BOOL vscp_evt_measurement64_sendRadioactivityAndOtherRandomEvents(double_t value); /** - * Count + * Force * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -181,7 +181,7 @@ extern BOOL vscp_evt_measurement64_sendRadioactivityAndOtherRandomEvents(double_ extern BOOL vscp_evt_measurement64_sendForce(double_t value); /** - * Count + * Pressure * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -190,7 +190,7 @@ extern BOOL vscp_evt_measurement64_sendForce(double_t value); extern BOOL vscp_evt_measurement64_sendPressure(double_t value); /** - * Count + * Energy * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -199,7 +199,7 @@ extern BOOL vscp_evt_measurement64_sendPressure(double_t value); extern BOOL vscp_evt_measurement64_sendEnergy(double_t value); /** - * Count + * Power * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -208,7 +208,7 @@ extern BOOL vscp_evt_measurement64_sendEnergy(double_t value); extern BOOL vscp_evt_measurement64_sendPower(double_t value); /** - * Count + * Electrical Charge * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -217,7 +217,7 @@ extern BOOL vscp_evt_measurement64_sendPower(double_t value); extern BOOL vscp_evt_measurement64_sendElectricalCharge(double_t value); /** - * Count + * Electrical Potential (Voltage) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -226,7 +226,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalCharge(double_t value); extern BOOL vscp_evt_measurement64_sendElectricalPotentialVoltage(double_t value); /** - * Count + * Electrical Capacitance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -235,7 +235,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalPotentialVoltage(double_t value extern BOOL vscp_evt_measurement64_sendElectricalCapacitance(double_t value); /** - * Count + * Electrical Resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -244,7 +244,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalCapacitance(double_t value); extern BOOL vscp_evt_measurement64_sendElectricalResistance(double_t value); /** - * Count + * Electrical Conductance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -253,7 +253,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalResistance(double_t value); extern BOOL vscp_evt_measurement64_sendElectricalConductance(double_t value); /** - * Count + * Magnetic Field Strength * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -262,7 +262,7 @@ extern BOOL vscp_evt_measurement64_sendElectricalConductance(double_t value); extern BOOL vscp_evt_measurement64_sendMagneticFieldStrength(double_t value); /** - * Count + * Magnetic Flux * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -271,7 +271,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFieldStrength(double_t value); extern BOOL vscp_evt_measurement64_sendMagneticFlux(double_t value); /** - * Count + * Magnetic Flux Density * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -280,7 +280,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFlux(double_t value); extern BOOL vscp_evt_measurement64_sendMagneticFluxDensity(double_t value); /** - * Count + * Inductance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -289,7 +289,7 @@ extern BOOL vscp_evt_measurement64_sendMagneticFluxDensity(double_t value); extern BOOL vscp_evt_measurement64_sendInductance(double_t value); /** - * Count + * Luminous Flux * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -298,7 +298,7 @@ extern BOOL vscp_evt_measurement64_sendInductance(double_t value); extern BOOL vscp_evt_measurement64_sendLuminousFlux(double_t value); /** - * Count + * Illuminance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -307,7 +307,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousFlux(double_t value); extern BOOL vscp_evt_measurement64_sendIlluminance(double_t value); /** - * Count + * Radiation dose * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -316,7 +316,7 @@ extern BOOL vscp_evt_measurement64_sendIlluminance(double_t value); extern BOOL vscp_evt_measurement64_sendRadiationDose(double_t value); /** - * Count + * Catalytic activity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -325,7 +325,7 @@ extern BOOL vscp_evt_measurement64_sendRadiationDose(double_t value); extern BOOL vscp_evt_measurement64_sendCatalyticActivity(double_t value); /** - * Count + * Volume * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -334,7 +334,7 @@ extern BOOL vscp_evt_measurement64_sendCatalyticActivity(double_t value); extern BOOL vscp_evt_measurement64_sendVolume(double_t value); /** - * Count + * Sound intensity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -343,7 +343,7 @@ extern BOOL vscp_evt_measurement64_sendVolume(double_t value); extern BOOL vscp_evt_measurement64_sendSoundIntensity(double_t value); /** - * Count + * Angle * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -352,7 +352,7 @@ extern BOOL vscp_evt_measurement64_sendSoundIntensity(double_t value); extern BOOL vscp_evt_measurement64_sendAngle(double_t value); /** - * Count + * Position WGS 84 * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -361,7 +361,7 @@ extern BOOL vscp_evt_measurement64_sendAngle(double_t value); extern BOOL vscp_evt_measurement64_sendPositionWgs84(double_t value); /** - * Count + * Speed * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -370,7 +370,7 @@ extern BOOL vscp_evt_measurement64_sendPositionWgs84(double_t value); extern BOOL vscp_evt_measurement64_sendSpeed(double_t value); /** - * Count + * Acceleration * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -379,7 +379,7 @@ extern BOOL vscp_evt_measurement64_sendSpeed(double_t value); extern BOOL vscp_evt_measurement64_sendAcceleration(double_t value); /** - * Count + * Tension * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -388,7 +388,7 @@ extern BOOL vscp_evt_measurement64_sendAcceleration(double_t value); extern BOOL vscp_evt_measurement64_sendTension(double_t value); /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -397,7 +397,7 @@ extern BOOL vscp_evt_measurement64_sendTension(double_t value); extern BOOL vscp_evt_measurement64_sendDampMoistHygrometerReading(double_t value); /** - * Count + * Flow * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -406,7 +406,7 @@ extern BOOL vscp_evt_measurement64_sendDampMoistHygrometerReading(double_t value extern BOOL vscp_evt_measurement64_sendFlow(double_t value); /** - * Count + * Thermal resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -415,7 +415,7 @@ extern BOOL vscp_evt_measurement64_sendFlow(double_t value); extern BOOL vscp_evt_measurement64_sendThermalResistance(double_t value); /** - * Count + * Refractive (optical) power * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -424,7 +424,7 @@ extern BOOL vscp_evt_measurement64_sendThermalResistance(double_t value); extern BOOL vscp_evt_measurement64_sendRefractiveOpticalPower(double_t value); /** - * Count + * Dynamic viscosity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -433,7 +433,7 @@ extern BOOL vscp_evt_measurement64_sendRefractiveOpticalPower(double_t value); extern BOOL vscp_evt_measurement64_sendDynamicViscosity(double_t value); /** - * Count + * Sound impedance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -442,7 +442,7 @@ extern BOOL vscp_evt_measurement64_sendDynamicViscosity(double_t value); extern BOOL vscp_evt_measurement64_sendSoundImpedance(double_t value); /** - * Count + * Sound resistance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -451,7 +451,7 @@ extern BOOL vscp_evt_measurement64_sendSoundImpedance(double_t value); extern BOOL vscp_evt_measurement64_sendSoundResistance(double_t value); /** - * Count + * Electric elastance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -460,7 +460,7 @@ extern BOOL vscp_evt_measurement64_sendSoundResistance(double_t value); extern BOOL vscp_evt_measurement64_sendElectricElastance(double_t value); /** - * Count + * Luminous energy * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -469,7 +469,7 @@ extern BOOL vscp_evt_measurement64_sendElectricElastance(double_t value); extern BOOL vscp_evt_measurement64_sendLuminousEnergy(double_t value); /** - * Count + * Luminance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -478,7 +478,7 @@ extern BOOL vscp_evt_measurement64_sendLuminousEnergy(double_t value); extern BOOL vscp_evt_measurement64_sendLuminance(double_t value); /** - * Count + * Chemical concentration * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -489,7 +489,7 @@ extern BOOL vscp_evt_measurement64_sendChemicalConcentration(double_t value); /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -500,7 +500,7 @@ extern BOOL vscp_evt_measurement64_sendDoseEquivalent(double_t value); /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -509,7 +509,7 @@ extern BOOL vscp_evt_measurement64_sendDoseEquivalent(double_t value); extern BOOL vscp_evt_measurement64_sendDewPoint(double_t value); /** - * Count + * Relative Level * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -518,7 +518,7 @@ extern BOOL vscp_evt_measurement64_sendDewPoint(double_t value); extern BOOL vscp_evt_measurement64_sendRelativeLevel(double_t value); /** - * Count + * Altitude * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -527,7 +527,7 @@ extern BOOL vscp_evt_measurement64_sendRelativeLevel(double_t value); extern BOOL vscp_evt_measurement64_sendAltitude(double_t value); /** - * Count + * Area * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -536,7 +536,7 @@ extern BOOL vscp_evt_measurement64_sendAltitude(double_t value); extern BOOL vscp_evt_measurement64_sendArea(double_t value); /** - * Count + * Radiant intensity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -545,7 +545,7 @@ extern BOOL vscp_evt_measurement64_sendArea(double_t value); extern BOOL vscp_evt_measurement64_sendRadiantIntensity(double_t value); /** - * Count + * Radiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -554,7 +554,7 @@ extern BOOL vscp_evt_measurement64_sendRadiantIntensity(double_t value); extern BOOL vscp_evt_measurement64_sendRadiance(double_t value); /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -563,7 +563,7 @@ extern BOOL vscp_evt_measurement64_sendRadiance(double_t value); extern BOOL vscp_evt_measurement64_sendIrradianceExitanceRadiosity(double_t value); /** - * Count + * Spectral radiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -572,7 +572,7 @@ extern BOOL vscp_evt_measurement64_sendIrradianceExitanceRadiosity(double_t valu extern BOOL vscp_evt_measurement64_sendSpectralRadiance(double_t value); /** - * Count + * Spectral irradiance * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -581,7 +581,7 @@ extern BOOL vscp_evt_measurement64_sendSpectralRadiance(double_t value); extern BOOL vscp_evt_measurement64_sendSpectralIrradiance(double_t value); /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -590,7 +590,7 @@ extern BOOL vscp_evt_measurement64_sendSpectralIrradiance(double_t value); extern BOOL vscp_evt_measurement64_sendSoundPressureAcousticPressure(double_t value); /** - * Count + * Sound energy density * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * @@ -599,7 +599,7 @@ extern BOOL vscp_evt_measurement64_sendSoundPressureAcousticPressure(double_t va extern BOOL vscp_evt_measurement64_sendSoundEnergyDensity(double_t value); /** - * Count + * Sound level * * @param[in] value The value is a "double" - IEEE-754, 64 Bits, double precision. * diff --git a/src/framework/events/vscp_evt_measurezone.c b/src/framework/events/vscp_evt_measurezone.c index fc69057..9f7710a 100644 --- a/src/framework/events/vscp_evt_measurezone.c +++ b/src/framework/events/vscp_evt_measurezone.c @@ -116,7 +116,7 @@ extern BOOL vscp_evt_measurezone_sendCount(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -143,7 +143,7 @@ extern BOOL vscp_evt_measurezone_sendLengthDistance(uint8_t index, uint8_t zone, } /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -170,7 +170,7 @@ extern BOOL vscp_evt_measurezone_sendMass(uint8_t index, uint8_t zone, uint8_t s } /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -197,7 +197,7 @@ extern BOOL vscp_evt_measurezone_sendTime(uint8_t index, uint8_t zone, uint8_t s } /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -224,7 +224,7 @@ extern BOOL vscp_evt_measurezone_sendElectricCurrent(uint8_t index, uint8_t zone } /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -251,7 +251,7 @@ extern BOOL vscp_evt_measurezone_sendTemperature(uint8_t index, uint8_t zone, ui } /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -278,7 +278,7 @@ extern BOOL vscp_evt_measurezone_sendAmountOfSubstance(uint8_t index, uint8_t zo } /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -305,7 +305,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousIntensityIntensityOfLight(uint8_t i } /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -332,7 +332,7 @@ extern BOOL vscp_evt_measurezone_sendFrequency(uint8_t index, uint8_t zone, uint } /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -359,7 +359,7 @@ extern BOOL vscp_evt_measurezone_sendRadioactivityAndOtherRandomEvents(uint8_t i } /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -386,7 +386,7 @@ extern BOOL vscp_evt_measurezone_sendForce(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -413,7 +413,7 @@ extern BOOL vscp_evt_measurezone_sendPressure(uint8_t index, uint8_t zone, uint8 } /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -440,7 +440,7 @@ extern BOOL vscp_evt_measurezone_sendEnergy(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -467,7 +467,7 @@ extern BOOL vscp_evt_measurezone_sendPower(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -494,7 +494,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalCharge(uint8_t index, uint8_t zon } /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -521,7 +521,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalPotentialVoltage(uint8_t index, u } /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -548,7 +548,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalCapacitance(uint8_t index, uint8_ } /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -575,7 +575,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalResistance(uint8_t index, uint8_t } /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -602,7 +602,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalConductance(uint8_t index, uint8_ } /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -629,7 +629,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFieldStrength(uint8_t index, uint8_ } /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -656,7 +656,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFlux(uint8_t index, uint8_t zone, u } /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -683,7 +683,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFluxDensity(uint8_t index, uint8_t } /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -710,7 +710,7 @@ extern BOOL vscp_evt_measurezone_sendInductance(uint8_t index, uint8_t zone, uin } /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -737,7 +737,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousFlux(uint8_t index, uint8_t zone, u } /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -764,7 +764,7 @@ extern BOOL vscp_evt_measurezone_sendIlluminance(uint8_t index, uint8_t zone, ui } /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -791,7 +791,7 @@ extern BOOL vscp_evt_measurezone_sendRadiationDose(uint8_t index, uint8_t zone, } /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -818,7 +818,7 @@ extern BOOL vscp_evt_measurezone_sendCatalyticActivity(uint8_t index, uint8_t zo } /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -845,7 +845,7 @@ extern BOOL vscp_evt_measurezone_sendVolume(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -872,7 +872,7 @@ extern BOOL vscp_evt_measurezone_sendSoundIntensity(uint8_t index, uint8_t zone, } /** - * Count + * Angle * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -899,7 +899,7 @@ extern BOOL vscp_evt_measurezone_sendAngle(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -926,7 +926,7 @@ extern BOOL vscp_evt_measurezone_sendPositionWgs84(uint8_t index, uint8_t zone, } /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -953,7 +953,7 @@ extern BOOL vscp_evt_measurezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -980,7 +980,7 @@ extern BOOL vscp_evt_measurezone_sendAcceleration(uint8_t index, uint8_t zone, u } /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1007,7 +1007,7 @@ extern BOOL vscp_evt_measurezone_sendTension(uint8_t index, uint8_t zone, uint8_ } /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1034,7 +1034,7 @@ extern BOOL vscp_evt_measurezone_sendDampMoistHygrometerReading(uint8_t index, u } /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1061,7 +1061,7 @@ extern BOOL vscp_evt_measurezone_sendFlow(uint8_t index, uint8_t zone, uint8_t s } /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1088,7 +1088,7 @@ extern BOOL vscp_evt_measurezone_sendThermalResistance(uint8_t index, uint8_t zo } /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1115,7 +1115,7 @@ extern BOOL vscp_evt_measurezone_sendRefractiveOpticalPower(uint8_t index, uint8 } /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1142,7 +1142,7 @@ extern BOOL vscp_evt_measurezone_sendDynamicViscosity(uint8_t index, uint8_t zon } /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1169,7 +1169,7 @@ extern BOOL vscp_evt_measurezone_sendSoundImpedance(uint8_t index, uint8_t zone, } /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1196,7 +1196,7 @@ extern BOOL vscp_evt_measurezone_sendSoundResistance(uint8_t index, uint8_t zone } /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1223,7 +1223,7 @@ extern BOOL vscp_evt_measurezone_sendElectricElastance(uint8_t index, uint8_t zo } /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1250,7 +1250,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousEnergy(uint8_t index, uint8_t zone, } /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1277,7 +1277,7 @@ extern BOOL vscp_evt_measurezone_sendLuminance(uint8_t index, uint8_t zone, uint } /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1306,7 +1306,7 @@ extern BOOL vscp_evt_measurezone_sendChemicalConcentration(uint8_t index, uint8_ /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1335,7 +1335,7 @@ extern BOOL vscp_evt_measurezone_sendDoseEquivalent(uint8_t index, uint8_t zone, /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1362,7 +1362,7 @@ extern BOOL vscp_evt_measurezone_sendDewPoint(uint8_t index, uint8_t zone, uint8 } /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1389,7 +1389,7 @@ extern BOOL vscp_evt_measurezone_sendRelativeLevel(uint8_t index, uint8_t zone, } /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1416,7 +1416,7 @@ extern BOOL vscp_evt_measurezone_sendAltitude(uint8_t index, uint8_t zone, uint8 } /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1443,7 +1443,7 @@ extern BOOL vscp_evt_measurezone_sendArea(uint8_t index, uint8_t zone, uint8_t s } /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1470,7 +1470,7 @@ extern BOOL vscp_evt_measurezone_sendRadiantIntensity(uint8_t index, uint8_t zon } /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1497,7 +1497,7 @@ extern BOOL vscp_evt_measurezone_sendRadiance(uint8_t index, uint8_t zone, uint8 } /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1524,7 +1524,7 @@ extern BOOL vscp_evt_measurezone_sendIrradianceExitanceRadiosity(uint8_t index, } /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1551,7 +1551,7 @@ extern BOOL vscp_evt_measurezone_sendSpectralRadiance(uint8_t index, uint8_t zon } /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1578,7 +1578,7 @@ extern BOOL vscp_evt_measurezone_sendSpectralIrradiance(uint8_t index, uint8_t z } /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1605,7 +1605,7 @@ extern BOOL vscp_evt_measurezone_sendSoundPressureAcousticPressure(uint8_t index } /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1632,7 +1632,7 @@ extern BOOL vscp_evt_measurezone_sendSoundEnergyDensity(uint8_t index, uint8_t z } /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_measurezone.h b/src/framework/events/vscp_evt_measurezone.h index 86e656c..177ef26 100644 --- a/src/framework/events/vscp_evt_measurezone.h +++ b/src/framework/events/vscp_evt_measurezone.h @@ -96,7 +96,7 @@ extern BOOL vscp_evt_measurezone_sendGeneralEvent(void); extern BOOL vscp_evt_measurezone_sendCount(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -109,7 +109,7 @@ extern BOOL vscp_evt_measurezone_sendCount(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendLengthDistance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -122,7 +122,7 @@ extern BOOL vscp_evt_measurezone_sendLengthDistance(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendMass(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -135,7 +135,7 @@ extern BOOL vscp_evt_measurezone_sendMass(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_measurezone_sendTime(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -148,7 +148,7 @@ extern BOOL vscp_evt_measurezone_sendTime(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_measurezone_sendElectricCurrent(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -161,7 +161,7 @@ extern BOOL vscp_evt_measurezone_sendElectricCurrent(uint8_t index, uint8_t zone extern BOOL vscp_evt_measurezone_sendTemperature(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -174,7 +174,7 @@ extern BOOL vscp_evt_measurezone_sendTemperature(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_measurezone_sendAmountOfSubstance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -187,7 +187,7 @@ extern BOOL vscp_evt_measurezone_sendAmountOfSubstance(uint8_t index, uint8_t zo extern BOOL vscp_evt_measurezone_sendLuminousIntensityIntensityOfLight(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -200,7 +200,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousIntensityIntensityOfLight(uint8_t i extern BOOL vscp_evt_measurezone_sendFrequency(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -213,7 +213,7 @@ extern BOOL vscp_evt_measurezone_sendFrequency(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_measurezone_sendRadioactivityAndOtherRandomEvents(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -226,7 +226,7 @@ extern BOOL vscp_evt_measurezone_sendRadioactivityAndOtherRandomEvents(uint8_t i extern BOOL vscp_evt_measurezone_sendForce(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -239,7 +239,7 @@ extern BOOL vscp_evt_measurezone_sendForce(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendPressure(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -252,7 +252,7 @@ extern BOOL vscp_evt_measurezone_sendPressure(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_measurezone_sendEnergy(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -265,7 +265,7 @@ extern BOOL vscp_evt_measurezone_sendEnergy(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendPower(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -278,7 +278,7 @@ extern BOOL vscp_evt_measurezone_sendPower(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendElectricalCharge(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -291,7 +291,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalCharge(uint8_t index, uint8_t zon extern BOOL vscp_evt_measurezone_sendElectricalPotentialVoltage(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -304,7 +304,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalPotentialVoltage(uint8_t index, u extern BOOL vscp_evt_measurezone_sendElectricalCapacitance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -317,7 +317,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalCapacitance(uint8_t index, uint8_ extern BOOL vscp_evt_measurezone_sendElectricalResistance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -330,7 +330,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalResistance(uint8_t index, uint8_t extern BOOL vscp_evt_measurezone_sendElectricalConductance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -343,7 +343,7 @@ extern BOOL vscp_evt_measurezone_sendElectricalConductance(uint8_t index, uint8_ extern BOOL vscp_evt_measurezone_sendMagneticFieldStrength(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -356,7 +356,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFieldStrength(uint8_t index, uint8_ extern BOOL vscp_evt_measurezone_sendMagneticFlux(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -369,7 +369,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFlux(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_measurezone_sendMagneticFluxDensity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -382,7 +382,7 @@ extern BOOL vscp_evt_measurezone_sendMagneticFluxDensity(uint8_t index, uint8_t extern BOOL vscp_evt_measurezone_sendInductance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -395,7 +395,7 @@ extern BOOL vscp_evt_measurezone_sendInductance(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_measurezone_sendLuminousFlux(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -408,7 +408,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousFlux(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_measurezone_sendIlluminance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -421,7 +421,7 @@ extern BOOL vscp_evt_measurezone_sendIlluminance(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_measurezone_sendRadiationDose(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -434,7 +434,7 @@ extern BOOL vscp_evt_measurezone_sendRadiationDose(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendCatalyticActivity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -447,7 +447,7 @@ extern BOOL vscp_evt_measurezone_sendCatalyticActivity(uint8_t index, uint8_t zo extern BOOL vscp_evt_measurezone_sendVolume(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -460,7 +460,7 @@ extern BOOL vscp_evt_measurezone_sendVolume(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendSoundIntensity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Angle * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -473,7 +473,7 @@ extern BOOL vscp_evt_measurezone_sendSoundIntensity(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendAngle(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -486,7 +486,7 @@ extern BOOL vscp_evt_measurezone_sendAngle(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendPositionWgs84(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -499,7 +499,7 @@ extern BOOL vscp_evt_measurezone_sendPositionWgs84(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -512,7 +512,7 @@ extern BOOL vscp_evt_measurezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_measurezone_sendAcceleration(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -525,7 +525,7 @@ extern BOOL vscp_evt_measurezone_sendAcceleration(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_measurezone_sendTension(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -538,7 +538,7 @@ extern BOOL vscp_evt_measurezone_sendTension(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_measurezone_sendDampMoistHygrometerReading(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -551,7 +551,7 @@ extern BOOL vscp_evt_measurezone_sendDampMoistHygrometerReading(uint8_t index, u extern BOOL vscp_evt_measurezone_sendFlow(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -564,7 +564,7 @@ extern BOOL vscp_evt_measurezone_sendFlow(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_measurezone_sendThermalResistance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -577,7 +577,7 @@ extern BOOL vscp_evt_measurezone_sendThermalResistance(uint8_t index, uint8_t zo extern BOOL vscp_evt_measurezone_sendRefractiveOpticalPower(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -590,7 +590,7 @@ extern BOOL vscp_evt_measurezone_sendRefractiveOpticalPower(uint8_t index, uint8 extern BOOL vscp_evt_measurezone_sendDynamicViscosity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -603,7 +603,7 @@ extern BOOL vscp_evt_measurezone_sendDynamicViscosity(uint8_t index, uint8_t zon extern BOOL vscp_evt_measurezone_sendSoundImpedance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -616,7 +616,7 @@ extern BOOL vscp_evt_measurezone_sendSoundImpedance(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendSoundResistance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -629,7 +629,7 @@ extern BOOL vscp_evt_measurezone_sendSoundResistance(uint8_t index, uint8_t zone extern BOOL vscp_evt_measurezone_sendElectricElastance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -642,7 +642,7 @@ extern BOOL vscp_evt_measurezone_sendElectricElastance(uint8_t index, uint8_t zo extern BOOL vscp_evt_measurezone_sendLuminousEnergy(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -655,7 +655,7 @@ extern BOOL vscp_evt_measurezone_sendLuminousEnergy(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendLuminance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -670,7 +670,7 @@ extern BOOL vscp_evt_measurezone_sendChemicalConcentration(uint8_t index, uint8_ /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -685,7 +685,7 @@ extern BOOL vscp_evt_measurezone_sendDoseEquivalent(uint8_t index, uint8_t zone, /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -698,7 +698,7 @@ extern BOOL vscp_evt_measurezone_sendDoseEquivalent(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendDewPoint(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -711,7 +711,7 @@ extern BOOL vscp_evt_measurezone_sendDewPoint(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_measurezone_sendRelativeLevel(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -724,7 +724,7 @@ extern BOOL vscp_evt_measurezone_sendRelativeLevel(uint8_t index, uint8_t zone, extern BOOL vscp_evt_measurezone_sendAltitude(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -737,7 +737,7 @@ extern BOOL vscp_evt_measurezone_sendAltitude(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_measurezone_sendArea(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -750,7 +750,7 @@ extern BOOL vscp_evt_measurezone_sendArea(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_measurezone_sendRadiantIntensity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -763,7 +763,7 @@ extern BOOL vscp_evt_measurezone_sendRadiantIntensity(uint8_t index, uint8_t zon extern BOOL vscp_evt_measurezone_sendRadiance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -776,7 +776,7 @@ extern BOOL vscp_evt_measurezone_sendRadiance(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_measurezone_sendIrradianceExitanceRadiosity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -789,7 +789,7 @@ extern BOOL vscp_evt_measurezone_sendIrradianceExitanceRadiosity(uint8_t index, extern BOOL vscp_evt_measurezone_sendSpectralRadiance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -802,7 +802,7 @@ extern BOOL vscp_evt_measurezone_sendSpectralRadiance(uint8_t index, uint8_t zon extern BOOL vscp_evt_measurezone_sendSpectralIrradiance(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -815,7 +815,7 @@ extern BOOL vscp_evt_measurezone_sendSpectralIrradiance(uint8_t index, uint8_t z extern BOOL vscp_evt_measurezone_sendSoundPressureAcousticPressure(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -828,7 +828,7 @@ extern BOOL vscp_evt_measurezone_sendSoundPressureAcousticPressure(uint8_t index extern BOOL vscp_evt_measurezone_sendSoundEnergyDensity(uint8_t index, uint8_t zone, uint8_t subZone, int32_t data, int8_t exp); /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_phone.c b/src/framework/events/vscp_evt_phone.c index a650fb6..527ff2a 100644 --- a/src/framework/events/vscp_evt_phone.c +++ b/src/framework/events/vscp_evt_phone.c @@ -138,7 +138,7 @@ extern BOOL vscp_evt_phone_sendIncomingCall(uint8_t id, uint8_t index, uint8_t t } /** - * Incoming call + * Outgoing call * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This @@ -210,7 +210,7 @@ extern BOOL vscp_evt_phone_sendRing(uint8_t id) } /** - * Incoming call + * Answer * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This @@ -260,7 +260,7 @@ extern BOOL vscp_evt_phone_sendAnswer(uint8_t id, uint8_t index, uint8_t total, } /** - * Ring + * Hangup * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -282,7 +282,7 @@ extern BOOL vscp_evt_phone_sendHangup(uint8_t id) } /** - * Ring + * Giveup * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -304,7 +304,7 @@ extern BOOL vscp_evt_phone_sendGiveup(uint8_t id) } /** - * Ring + * Transfer * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -326,7 +326,7 @@ extern BOOL vscp_evt_phone_sendTransfer(uint8_t id) } /** - * Incoming call + * Database Info * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This diff --git a/src/framework/events/vscp_evt_phone.h b/src/framework/events/vscp_evt_phone.h index 86b3770..90df5c3 100644 --- a/src/framework/events/vscp_evt_phone.h +++ b/src/framework/events/vscp_evt_phone.h @@ -94,7 +94,7 @@ extern BOOL vscp_evt_phone_sendGeneralEvent(void); extern BOOL vscp_evt_phone_sendIncomingCall(uint8_t id, uint8_t index, uint8_t total, uint8_t const * const info, uint8_t infoSize); /** - * Incoming call + * Outgoing call * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This @@ -117,7 +117,7 @@ extern BOOL vscp_evt_phone_sendOutgoingCall(uint8_t id, uint8_t index, uint8_t t extern BOOL vscp_evt_phone_sendRing(uint8_t id); /** - * Incoming call + * Answer * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This @@ -131,7 +131,7 @@ extern BOOL vscp_evt_phone_sendRing(uint8_t id); extern BOOL vscp_evt_phone_sendAnswer(uint8_t id, uint8_t index, uint8_t total, uint8_t const * const info, uint8_t infoSize); /** - * Ring + * Hangup * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -140,7 +140,7 @@ extern BOOL vscp_evt_phone_sendAnswer(uint8_t id, uint8_t index, uint8_t total, extern BOOL vscp_evt_phone_sendHangup(uint8_t id); /** - * Ring + * Giveup * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -149,7 +149,7 @@ extern BOOL vscp_evt_phone_sendHangup(uint8_t id); extern BOOL vscp_evt_phone_sendGiveup(uint8_t id); /** - * Ring + * Transfer * * @param[in] id Id for the call. This is an incremental identity number for each call. * @@ -158,7 +158,7 @@ extern BOOL vscp_evt_phone_sendGiveup(uint8_t id); extern BOOL vscp_evt_phone_sendTransfer(uint8_t id); /** - * Incoming call + * Database Info * * @param[in] id Id for the call. This is an incremental identity number for each call. * @param[in] index Index of phone event (base = 0). Each call can be broken up into fragments. This diff --git a/src/framework/events/vscp_evt_setvaluezone.c b/src/framework/events/vscp_evt_setvaluezone.c index d7cf2a4..ea54e2d 100644 --- a/src/framework/events/vscp_evt_setvaluezone.c +++ b/src/framework/events/vscp_evt_setvaluezone.c @@ -141,7 +141,7 @@ extern BOOL vscp_evt_setvaluezone_sendCount(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -194,7 +194,7 @@ extern BOOL vscp_evt_setvaluezone_sendLengthDistance(uint8_t index, uint8_t zone } /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -247,7 +247,7 @@ extern BOOL vscp_evt_setvaluezone_sendMass(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -300,7 +300,7 @@ extern BOOL vscp_evt_setvaluezone_sendTime(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -353,7 +353,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricCurrent(uint8_t index, uint8_t zon } /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -406,7 +406,7 @@ extern BOOL vscp_evt_setvaluezone_sendTemperature(uint8_t index, uint8_t zone, u } /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -459,7 +459,7 @@ extern BOOL vscp_evt_setvaluezone_sendAmountOfSubstance(uint8_t index, uint8_t z } /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -512,7 +512,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousIntensityIntensityOfLight(uint8_t } /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -565,7 +565,7 @@ extern BOOL vscp_evt_setvaluezone_sendFrequency(uint8_t index, uint8_t zone, uin } /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -618,7 +618,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadioactivityAndOtherRandomEvents(uint8_t } /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -671,7 +671,7 @@ extern BOOL vscp_evt_setvaluezone_sendForce(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -724,7 +724,7 @@ extern BOOL vscp_evt_setvaluezone_sendPressure(uint8_t index, uint8_t zone, uint } /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -777,7 +777,7 @@ extern BOOL vscp_evt_setvaluezone_sendEnergy(uint8_t index, uint8_t zone, uint8_ } /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -830,7 +830,7 @@ extern BOOL vscp_evt_setvaluezone_sendPower(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -883,7 +883,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalCharge(uint8_t index, uint8_t zo } /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -936,7 +936,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalPotentialVoltage(uint8_t index, } /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -989,7 +989,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalCapacitance(uint8_t index, uint8 } /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1042,7 +1042,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalResistance(uint8_t index, uint8_ } /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1095,7 +1095,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalConductance(uint8_t index, uint8 } /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1148,7 +1148,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFieldStrength(uint8_t index, uint8 } /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1201,7 +1201,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFlux(uint8_t index, uint8_t zone, } /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1254,7 +1254,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFluxDensity(uint8_t index, uint8_t } /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1307,7 +1307,7 @@ extern BOOL vscp_evt_setvaluezone_sendInductance(uint8_t index, uint8_t zone, ui } /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1360,7 +1360,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousFlux(uint8_t index, uint8_t zone, } /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1413,7 +1413,7 @@ extern BOOL vscp_evt_setvaluezone_sendIlluminance(uint8_t index, uint8_t zone, u } /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1466,7 +1466,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiationDose(uint8_t index, uint8_t zone, } /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1519,7 +1519,7 @@ extern BOOL vscp_evt_setvaluezone_sendCatalyticActivity(uint8_t index, uint8_t z } /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1572,7 +1572,7 @@ extern BOOL vscp_evt_setvaluezone_sendVolume(uint8_t index, uint8_t zone, uint8_ } /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1625,7 +1625,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundIntensity(uint8_t index, uint8_t zone } /** - * Count + * Angle * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1678,7 +1678,7 @@ extern BOOL vscp_evt_setvaluezone_sendAngle(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1731,7 +1731,7 @@ extern BOOL vscp_evt_setvaluezone_sendPositionWgs84(uint8_t index, uint8_t zone, } /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1784,7 +1784,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1837,7 +1837,7 @@ extern BOOL vscp_evt_setvaluezone_sendAcceleration(uint8_t index, uint8_t zone, } /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1890,7 +1890,7 @@ extern BOOL vscp_evt_setvaluezone_sendTension(uint8_t index, uint8_t zone, uint8 } /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1943,7 +1943,7 @@ extern BOOL vscp_evt_setvaluezone_sendDampMoistHygrometerReading(uint8_t index, } /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1996,7 +1996,7 @@ extern BOOL vscp_evt_setvaluezone_sendFlow(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2049,7 +2049,7 @@ extern BOOL vscp_evt_setvaluezone_sendThermalResistance(uint8_t index, uint8_t z } /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2102,7 +2102,7 @@ extern BOOL vscp_evt_setvaluezone_sendRefractiveOpticalPower(uint8_t index, uint } /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2155,7 +2155,7 @@ extern BOOL vscp_evt_setvaluezone_sendDynamicViscosity(uint8_t index, uint8_t zo } /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2208,7 +2208,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundImpedance(uint8_t index, uint8_t zone } /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2261,7 +2261,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundResistance(uint8_t index, uint8_t zon } /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2314,7 +2314,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricElastance(uint8_t index, uint8_t z } /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2367,7 +2367,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousEnergy(uint8_t index, uint8_t zone } /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2420,7 +2420,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminance(uint8_t index, uint8_t zone, uin } /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2475,7 +2475,7 @@ extern BOOL vscp_evt_setvaluezone_sendChemicalConcentration(uint8_t index, uint8 /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2530,7 +2530,7 @@ extern BOOL vscp_evt_setvaluezone_sendDoseEquivalent(uint8_t index, uint8_t zone /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2583,7 +2583,7 @@ extern BOOL vscp_evt_setvaluezone_sendDewPoint(uint8_t index, uint8_t zone, uint } /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2636,7 +2636,7 @@ extern BOOL vscp_evt_setvaluezone_sendRelativeLevel(uint8_t index, uint8_t zone, } /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2689,7 +2689,7 @@ extern BOOL vscp_evt_setvaluezone_sendAltitude(uint8_t index, uint8_t zone, uint } /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2742,7 +2742,7 @@ extern BOOL vscp_evt_setvaluezone_sendArea(uint8_t index, uint8_t zone, uint8_t } /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2795,7 +2795,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiantIntensity(uint8_t index, uint8_t zo } /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2848,7 +2848,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiance(uint8_t index, uint8_t zone, uint } /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2901,7 +2901,7 @@ extern BOOL vscp_evt_setvaluezone_sendIrradianceExitanceRadiosity(uint8_t index, } /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -2954,7 +2954,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpectralRadiance(uint8_t index, uint8_t zo } /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3007,7 +3007,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpectralIrradiance(uint8_t index, uint8_t } /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3060,7 +3060,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundPressureAcousticPressure(uint8_t inde } /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -3113,7 +3113,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundEnergyDensity(uint8_t index, uint8_t } /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_setvaluezone.h b/src/framework/events/vscp_evt_setvaluezone.h index 08ac596..cc1d52d 100644 --- a/src/framework/events/vscp_evt_setvaluezone.h +++ b/src/framework/events/vscp_evt_setvaluezone.h @@ -95,7 +95,7 @@ extern BOOL vscp_evt_setvaluezone_sendGeneralEvent(void); extern BOOL vscp_evt_setvaluezone_sendCount(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Length/Distance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -109,7 +109,7 @@ extern BOOL vscp_evt_setvaluezone_sendCount(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendLengthDistance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Mass * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -123,7 +123,7 @@ extern BOOL vscp_evt_setvaluezone_sendLengthDistance(uint8_t index, uint8_t zone extern BOOL vscp_evt_setvaluezone_sendMass(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Time * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -137,7 +137,7 @@ extern BOOL vscp_evt_setvaluezone_sendMass(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendTime(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electric Current * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -151,7 +151,7 @@ extern BOOL vscp_evt_setvaluezone_sendTime(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendElectricCurrent(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Temperature * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -165,7 +165,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricCurrent(uint8_t index, uint8_t zon extern BOOL vscp_evt_setvaluezone_sendTemperature(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Amount of substance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -179,7 +179,7 @@ extern BOOL vscp_evt_setvaluezone_sendTemperature(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_setvaluezone_sendAmountOfSubstance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Luminous Intensity (Intensity of light) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -193,7 +193,7 @@ extern BOOL vscp_evt_setvaluezone_sendAmountOfSubstance(uint8_t index, uint8_t z extern BOOL vscp_evt_setvaluezone_sendLuminousIntensityIntensityOfLight(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Frequency * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -207,7 +207,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousIntensityIntensityOfLight(uint8_t extern BOOL vscp_evt_setvaluezone_sendFrequency(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Radioactivity and other random events * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -221,7 +221,7 @@ extern BOOL vscp_evt_setvaluezone_sendFrequency(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_setvaluezone_sendRadioactivityAndOtherRandomEvents(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Force * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -235,7 +235,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadioactivityAndOtherRandomEvents(uint8_t extern BOOL vscp_evt_setvaluezone_sendForce(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Pressure * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -249,7 +249,7 @@ extern BOOL vscp_evt_setvaluezone_sendForce(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendPressure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -263,7 +263,7 @@ extern BOOL vscp_evt_setvaluezone_sendPressure(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_setvaluezone_sendEnergy(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -277,7 +277,7 @@ extern BOOL vscp_evt_setvaluezone_sendEnergy(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_setvaluezone_sendPower(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electrical Charge * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -291,7 +291,7 @@ extern BOOL vscp_evt_setvaluezone_sendPower(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendElectricalCharge(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electrical Potential (Voltage) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -305,7 +305,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalCharge(uint8_t index, uint8_t zo extern BOOL vscp_evt_setvaluezone_sendElectricalPotentialVoltage(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electrical Capacitance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -319,7 +319,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalPotentialVoltage(uint8_t index, extern BOOL vscp_evt_setvaluezone_sendElectricalCapacitance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electrical Resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -333,7 +333,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalCapacitance(uint8_t index, uint8 extern BOOL vscp_evt_setvaluezone_sendElectricalResistance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electrical Conductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -347,7 +347,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalResistance(uint8_t index, uint8_ extern BOOL vscp_evt_setvaluezone_sendElectricalConductance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Magnetic Field Strength * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -361,7 +361,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricalConductance(uint8_t index, uint8 extern BOOL vscp_evt_setvaluezone_sendMagneticFieldStrength(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Magnetic Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -375,7 +375,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFieldStrength(uint8_t index, uint8 extern BOOL vscp_evt_setvaluezone_sendMagneticFlux(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Magnetic Flux Density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -389,7 +389,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFlux(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendMagneticFluxDensity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Inductance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -403,7 +403,7 @@ extern BOOL vscp_evt_setvaluezone_sendMagneticFluxDensity(uint8_t index, uint8_t extern BOOL vscp_evt_setvaluezone_sendInductance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Luminous Flux * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -417,7 +417,7 @@ extern BOOL vscp_evt_setvaluezone_sendInductance(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_setvaluezone_sendLuminousFlux(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Illuminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -431,7 +431,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousFlux(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendIlluminance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Radiation dose * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -445,7 +445,7 @@ extern BOOL vscp_evt_setvaluezone_sendIlluminance(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_setvaluezone_sendRadiationDose(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Catalytic activity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -459,7 +459,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiationDose(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendCatalyticActivity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Volume * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -473,7 +473,7 @@ extern BOOL vscp_evt_setvaluezone_sendCatalyticActivity(uint8_t index, uint8_t z extern BOOL vscp_evt_setvaluezone_sendVolume(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -487,7 +487,7 @@ extern BOOL vscp_evt_setvaluezone_sendVolume(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_setvaluezone_sendSoundIntensity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Angle * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -501,7 +501,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundIntensity(uint8_t index, uint8_t zone extern BOOL vscp_evt_setvaluezone_sendAngle(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Position WGS 84 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -515,7 +515,7 @@ extern BOOL vscp_evt_setvaluezone_sendAngle(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendPositionWgs84(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Speed * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -529,7 +529,7 @@ extern BOOL vscp_evt_setvaluezone_sendPositionWgs84(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Acceleration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -543,7 +543,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpeed(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendAcceleration(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Tension * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -557,7 +557,7 @@ extern BOOL vscp_evt_setvaluezone_sendAcceleration(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendTension(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Damp/moist (Hygrometer reading) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -571,7 +571,7 @@ extern BOOL vscp_evt_setvaluezone_sendTension(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_setvaluezone_sendDampMoistHygrometerReading(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Flow * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -585,7 +585,7 @@ extern BOOL vscp_evt_setvaluezone_sendDampMoistHygrometerReading(uint8_t index, extern BOOL vscp_evt_setvaluezone_sendFlow(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Thermal resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -599,7 +599,7 @@ extern BOOL vscp_evt_setvaluezone_sendFlow(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendThermalResistance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Refractive (optical) power * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -613,7 +613,7 @@ extern BOOL vscp_evt_setvaluezone_sendThermalResistance(uint8_t index, uint8_t z extern BOOL vscp_evt_setvaluezone_sendRefractiveOpticalPower(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Dynamic viscosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -627,7 +627,7 @@ extern BOOL vscp_evt_setvaluezone_sendRefractiveOpticalPower(uint8_t index, uint extern BOOL vscp_evt_setvaluezone_sendDynamicViscosity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound impedance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -641,7 +641,7 @@ extern BOOL vscp_evt_setvaluezone_sendDynamicViscosity(uint8_t index, uint8_t zo extern BOOL vscp_evt_setvaluezone_sendSoundImpedance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound resistance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -655,7 +655,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundImpedance(uint8_t index, uint8_t zone extern BOOL vscp_evt_setvaluezone_sendSoundResistance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Electric elastance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -669,7 +669,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundResistance(uint8_t index, uint8_t zon extern BOOL vscp_evt_setvaluezone_sendElectricElastance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Luminous energy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -683,7 +683,7 @@ extern BOOL vscp_evt_setvaluezone_sendElectricElastance(uint8_t index, uint8_t z extern BOOL vscp_evt_setvaluezone_sendLuminousEnergy(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Luminance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -697,7 +697,7 @@ extern BOOL vscp_evt_setvaluezone_sendLuminousEnergy(uint8_t index, uint8_t zone extern BOOL vscp_evt_setvaluezone_sendLuminance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Chemical concentration * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -713,7 +713,7 @@ extern BOOL vscp_evt_setvaluezone_sendChemicalConcentration(uint8_t index, uint8 /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dose equivalent * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -729,7 +729,7 @@ extern BOOL vscp_evt_setvaluezone_sendDoseEquivalent(uint8_t index, uint8_t zone /* "Reserved" not supported. No frame defined. */ /** - * Count + * Dew Point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -743,7 +743,7 @@ extern BOOL vscp_evt_setvaluezone_sendDoseEquivalent(uint8_t index, uint8_t zone extern BOOL vscp_evt_setvaluezone_sendDewPoint(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Relative Level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -757,7 +757,7 @@ extern BOOL vscp_evt_setvaluezone_sendDewPoint(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_setvaluezone_sendRelativeLevel(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Altitude * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -771,7 +771,7 @@ extern BOOL vscp_evt_setvaluezone_sendRelativeLevel(uint8_t index, uint8_t zone, extern BOOL vscp_evt_setvaluezone_sendAltitude(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Area * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -785,7 +785,7 @@ extern BOOL vscp_evt_setvaluezone_sendAltitude(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_setvaluezone_sendArea(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Radiant intensity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -799,7 +799,7 @@ extern BOOL vscp_evt_setvaluezone_sendArea(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_setvaluezone_sendRadiantIntensity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -813,7 +813,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiantIntensity(uint8_t index, uint8_t zo extern BOOL vscp_evt_setvaluezone_sendRadiance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Irradiance, Exitance, Radiosity * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -827,7 +827,7 @@ extern BOOL vscp_evt_setvaluezone_sendRadiance(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_setvaluezone_sendIrradianceExitanceRadiosity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Spectral radiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -841,7 +841,7 @@ extern BOOL vscp_evt_setvaluezone_sendIrradianceExitanceRadiosity(uint8_t index, extern BOOL vscp_evt_setvaluezone_sendSpectralRadiance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Spectral irradiance * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -855,7 +855,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpectralRadiance(uint8_t index, uint8_t zo extern BOOL vscp_evt_setvaluezone_sendSpectralIrradiance(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound pressure (acoustic pressure) * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -869,7 +869,7 @@ extern BOOL vscp_evt_setvaluezone_sendSpectralIrradiance(uint8_t index, uint8_t extern BOOL vscp_evt_setvaluezone_sendSoundPressureAcousticPressure(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound energy density * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -883,7 +883,7 @@ extern BOOL vscp_evt_setvaluezone_sendSoundPressureAcousticPressure(uint8_t inde extern BOOL vscp_evt_setvaluezone_sendSoundEnergyDensity(uint8_t index, uint8_t zone, uint8_t subZone, uint8_t dataCoding, uint8_t const * const data, uint8_t dataSize); /** - * Count + * Sound level * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_weather.c b/src/framework/events/vscp_evt_weather.c index cccb1a2..9baea7a 100644 --- a/src/framework/events/vscp_evt_weather.c +++ b/src/framework/events/vscp_evt_weather.c @@ -118,7 +118,7 @@ extern BOOL vscp_evt_weather_sendSeasonWinter(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * Season spring * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -148,7 +148,7 @@ extern BOOL vscp_evt_weather_sendSeasonSpring(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * Season summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -178,7 +178,7 @@ extern BOOL vscp_evt_weather_sendSeasonSummer(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * Autumn summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -208,7 +208,7 @@ extern BOOL vscp_evt_weather_sendAutumnSummer(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * No wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -238,7 +238,7 @@ extern BOOL vscp_evt_weather_sendNoWind(uint8_t index, uint8_t zone, uint8_t sub } /** - * Season winter + * Low wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -268,7 +268,7 @@ extern BOOL vscp_evt_weather_sendLowWind(uint8_t index, uint8_t zone, uint8_t su } /** - * Season winter + * Medium wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -298,7 +298,7 @@ extern BOOL vscp_evt_weather_sendMediumWind(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * High wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -328,7 +328,7 @@ extern BOOL vscp_evt_weather_sendHighWind(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Very high wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -358,7 +358,7 @@ extern BOOL vscp_evt_weather_sendVeryHighWind(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * Air foggy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_weather_sendAirFoggy(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Air freezing * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -418,7 +418,7 @@ extern BOOL vscp_evt_weather_sendAirFreezing(uint8_t index, uint8_t zone, uint8_ } /** - * Season winter + * Air Very cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -448,7 +448,7 @@ extern BOOL vscp_evt_weather_sendAirVeryCold(uint8_t index, uint8_t zone, uint8_ } /** - * Season winter + * Air cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -478,7 +478,7 @@ extern BOOL vscp_evt_weather_sendAirCold(uint8_t index, uint8_t zone, uint8_t su } /** - * Season winter + * Air normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -508,7 +508,7 @@ extern BOOL vscp_evt_weather_sendAirNormal(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Air hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -538,7 +538,7 @@ extern BOOL vscp_evt_weather_sendAirHot(uint8_t index, uint8_t zone, uint8_t sub } /** - * Season winter + * Air very hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -568,7 +568,7 @@ extern BOOL vscp_evt_weather_sendAirVeryHot(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Pollution low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -598,7 +598,7 @@ extern BOOL vscp_evt_weather_sendPollutionLow(uint8_t index, uint8_t zone, uint8 } /** - * Season winter + * Pollution medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -628,7 +628,7 @@ extern BOOL vscp_evt_weather_sendPollutionMedium(uint8_t index, uint8_t zone, ui } /** - * Season winter + * Pollution high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -658,7 +658,7 @@ extern BOOL vscp_evt_weather_sendPollutionHigh(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Air humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -688,7 +688,7 @@ extern BOOL vscp_evt_weather_sendAirHumid(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Air dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -718,7 +718,7 @@ extern BOOL vscp_evt_weather_sendAirDry(uint8_t index, uint8_t zone, uint8_t sub } /** - * Season winter + * Soil humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -748,7 +748,7 @@ extern BOOL vscp_evt_weather_sendSoilHumid(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Soil dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -778,7 +778,7 @@ extern BOOL vscp_evt_weather_sendSoilDry(uint8_t index, uint8_t zone, uint8_t su } /** - * Season winter + * Rain none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -808,7 +808,7 @@ extern BOOL vscp_evt_weather_sendRainNone(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Rain light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -838,7 +838,7 @@ extern BOOL vscp_evt_weather_sendRainLight(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Rain heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -868,7 +868,7 @@ extern BOOL vscp_evt_weather_sendRainHeavy(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Rain very heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -898,7 +898,7 @@ extern BOOL vscp_evt_weather_sendRainVeryHeavy(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Sun none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -928,7 +928,7 @@ extern BOOL vscp_evt_weather_sendSunNone(uint8_t index, uint8_t zone, uint8_t su } /** - * Season winter + * Sun light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -958,7 +958,7 @@ extern BOOL vscp_evt_weather_sendSunLight(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Sun heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -988,7 +988,7 @@ extern BOOL vscp_evt_weather_sendSunHeavy(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Snow none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1018,7 +1018,7 @@ extern BOOL vscp_evt_weather_sendSnowNone(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Snow light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1048,7 +1048,7 @@ extern BOOL vscp_evt_weather_sendSnowLight(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Snow heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1078,7 +1078,7 @@ extern BOOL vscp_evt_weather_sendSnowHeavy(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Dew point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1108,7 +1108,7 @@ extern BOOL vscp_evt_weather_sendDewPoint(uint8_t index, uint8_t zone, uint8_t s } /** - * Season winter + * Storm * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1138,7 +1138,7 @@ extern BOOL vscp_evt_weather_sendStorm(uint8_t index, uint8_t zone, uint8_t subZ } /** - * Season winter + * Flood * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1168,7 +1168,7 @@ extern BOOL vscp_evt_weather_sendFlood(uint8_t index, uint8_t zone, uint8_t subZ } /** - * Season winter + * Earthquake * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1198,7 +1198,7 @@ extern BOOL vscp_evt_weather_sendEarthquake(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * Nuclear disaster * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1228,7 +1228,7 @@ extern BOOL vscp_evt_weather_sendNuclearDisaster(uint8_t index, uint8_t zone, ui } /** - * Season winter + * Fire * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1258,7 +1258,7 @@ extern BOOL vscp_evt_weather_sendFire(uint8_t index, uint8_t zone, uint8_t subZo } /** - * Season winter + * Lightning * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1288,7 +1288,7 @@ extern BOOL vscp_evt_weather_sendLightning(uint8_t index, uint8_t zone, uint8_t } /** - * Season winter + * UV Radiation low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1318,7 +1318,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationLow(uint8_t index, uint8_t zone, uin } /** - * Season winter + * UV Radiation medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1348,7 +1348,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationMedium(uint8_t index, uint8_t zone, } /** - * Season winter + * UV Radiation normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1378,7 +1378,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationNormal(uint8_t index, uint8_t zone, } /** - * Season winter + * UV Radiation high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1408,7 +1408,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationHigh(uint8_t index, uint8_t zone, ui } /** - * Season winter + * UV Radiation very high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1438,7 +1438,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationVeryHigh(uint8_t index, uint8_t zone } /** - * Season winter + * Warning level 1 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1468,7 +1468,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel1(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Warning level 2 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1498,7 +1498,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel2(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Warning level 3 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1528,7 +1528,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel3(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Warning level 4 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1558,7 +1558,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel4(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Warning level 5 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1588,7 +1588,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel5(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Armageddon * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_weather.h b/src/framework/events/vscp_evt_weather.h index 9731191..c2f342f 100644 --- a/src/framework/events/vscp_evt_weather.h +++ b/src/framework/events/vscp_evt_weather.h @@ -91,7 +91,7 @@ extern BOOL vscp_evt_weather_sendGeneralEvent(void); extern BOOL vscp_evt_weather_sendSeasonWinter(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Season spring * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -102,7 +102,7 @@ extern BOOL vscp_evt_weather_sendSeasonWinter(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendSeasonSpring(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Season summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -113,7 +113,7 @@ extern BOOL vscp_evt_weather_sendSeasonSpring(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendSeasonSummer(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Autumn summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -124,7 +124,7 @@ extern BOOL vscp_evt_weather_sendSeasonSummer(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendAutumnSummer(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * No wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -135,7 +135,7 @@ extern BOOL vscp_evt_weather_sendAutumnSummer(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendNoWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Low wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -146,7 +146,7 @@ extern BOOL vscp_evt_weather_sendNoWind(uint8_t index, uint8_t zone, uint8_t sub extern BOOL vscp_evt_weather_sendLowWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Medium wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -157,7 +157,7 @@ extern BOOL vscp_evt_weather_sendLowWind(uint8_t index, uint8_t zone, uint8_t su extern BOOL vscp_evt_weather_sendMediumWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * High wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -168,7 +168,7 @@ extern BOOL vscp_evt_weather_sendMediumWind(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendHighWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Very high wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -179,7 +179,7 @@ extern BOOL vscp_evt_weather_sendHighWind(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendVeryHighWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air foggy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -190,7 +190,7 @@ extern BOOL vscp_evt_weather_sendVeryHighWind(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendAirFoggy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air freezing * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -201,7 +201,7 @@ extern BOOL vscp_evt_weather_sendAirFoggy(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendAirFreezing(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air Very cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -212,7 +212,7 @@ extern BOOL vscp_evt_weather_sendAirFreezing(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_weather_sendAirVeryCold(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -223,7 +223,7 @@ extern BOOL vscp_evt_weather_sendAirVeryCold(uint8_t index, uint8_t zone, uint8_ extern BOOL vscp_evt_weather_sendAirCold(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -234,7 +234,7 @@ extern BOOL vscp_evt_weather_sendAirCold(uint8_t index, uint8_t zone, uint8_t su extern BOOL vscp_evt_weather_sendAirNormal(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -245,7 +245,7 @@ extern BOOL vscp_evt_weather_sendAirNormal(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendAirHot(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air very hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -256,7 +256,7 @@ extern BOOL vscp_evt_weather_sendAirHot(uint8_t index, uint8_t zone, uint8_t sub extern BOOL vscp_evt_weather_sendAirVeryHot(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -267,7 +267,7 @@ extern BOOL vscp_evt_weather_sendAirVeryHot(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendPollutionLow(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -278,7 +278,7 @@ extern BOOL vscp_evt_weather_sendPollutionLow(uint8_t index, uint8_t zone, uint8 extern BOOL vscp_evt_weather_sendPollutionMedium(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -289,7 +289,7 @@ extern BOOL vscp_evt_weather_sendPollutionMedium(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_sendPollutionHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -300,7 +300,7 @@ extern BOOL vscp_evt_weather_sendPollutionHigh(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendAirHumid(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -311,7 +311,7 @@ extern BOOL vscp_evt_weather_sendAirHumid(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendAirDry(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Soil humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -322,7 +322,7 @@ extern BOOL vscp_evt_weather_sendAirDry(uint8_t index, uint8_t zone, uint8_t sub extern BOOL vscp_evt_weather_sendSoilHumid(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Soil dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -333,7 +333,7 @@ extern BOOL vscp_evt_weather_sendSoilHumid(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendSoilDry(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -344,7 +344,7 @@ extern BOOL vscp_evt_weather_sendSoilDry(uint8_t index, uint8_t zone, uint8_t su extern BOOL vscp_evt_weather_sendRainNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -355,7 +355,7 @@ extern BOOL vscp_evt_weather_sendRainNone(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendRainLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -366,7 +366,7 @@ extern BOOL vscp_evt_weather_sendRainLight(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendRainHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain very heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -377,7 +377,7 @@ extern BOOL vscp_evt_weather_sendRainHeavy(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendRainVeryHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_weather_sendRainVeryHeavy(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendSunNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -399,7 +399,7 @@ extern BOOL vscp_evt_weather_sendSunNone(uint8_t index, uint8_t zone, uint8_t su extern BOOL vscp_evt_weather_sendSunLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -410,7 +410,7 @@ extern BOOL vscp_evt_weather_sendSunLight(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendSunHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -421,7 +421,7 @@ extern BOOL vscp_evt_weather_sendSunHeavy(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendSnowNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -432,7 +432,7 @@ extern BOOL vscp_evt_weather_sendSnowNone(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendSnowLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -443,7 +443,7 @@ extern BOOL vscp_evt_weather_sendSnowLight(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendSnowHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Dew point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -454,7 +454,7 @@ extern BOOL vscp_evt_weather_sendSnowHeavy(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendDewPoint(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Storm * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -465,7 +465,7 @@ extern BOOL vscp_evt_weather_sendDewPoint(uint8_t index, uint8_t zone, uint8_t s extern BOOL vscp_evt_weather_sendStorm(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Flood * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -476,7 +476,7 @@ extern BOOL vscp_evt_weather_sendStorm(uint8_t index, uint8_t zone, uint8_t subZ extern BOOL vscp_evt_weather_sendFlood(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Earthquake * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -487,7 +487,7 @@ extern BOOL vscp_evt_weather_sendFlood(uint8_t index, uint8_t zone, uint8_t subZ extern BOOL vscp_evt_weather_sendEarthquake(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Nuclear disaster * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -498,7 +498,7 @@ extern BOOL vscp_evt_weather_sendEarthquake(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendNuclearDisaster(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Fire * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -509,7 +509,7 @@ extern BOOL vscp_evt_weather_sendNuclearDisaster(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_sendFire(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Lightning * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -520,7 +520,7 @@ extern BOOL vscp_evt_weather_sendFire(uint8_t index, uint8_t zone, uint8_t subZo extern BOOL vscp_evt_weather_sendLightning(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -531,7 +531,7 @@ extern BOOL vscp_evt_weather_sendLightning(uint8_t index, uint8_t zone, uint8_t extern BOOL vscp_evt_weather_sendUvRadiationLow(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -542,7 +542,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationLow(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_weather_sendUvRadiationMedium(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -553,7 +553,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationMedium(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_sendUvRadiationNormal(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -564,7 +564,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationNormal(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_sendUvRadiationHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation very high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -575,7 +575,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationHigh(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_sendUvRadiationVeryHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 1 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -586,7 +586,7 @@ extern BOOL vscp_evt_weather_sendUvRadiationVeryHigh(uint8_t index, uint8_t zone extern BOOL vscp_evt_weather_sendWarningLevel1(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 2 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -597,7 +597,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel1(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendWarningLevel2(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 3 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -608,7 +608,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel2(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendWarningLevel3(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 4 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -619,7 +619,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel3(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendWarningLevel4(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 5 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -630,7 +630,7 @@ extern BOOL vscp_evt_weather_sendWarningLevel4(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_sendWarningLevel5(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Armageddon * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_weather_forecast.c b/src/framework/events/vscp_evt_weather_forecast.c index dc97ed3..a68eca5 100644 --- a/src/framework/events/vscp_evt_weather_forecast.c +++ b/src/framework/events/vscp_evt_weather_forecast.c @@ -118,7 +118,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonWinter(uint8_t index, uint8_t zo } /** - * Season winter + * Season spring * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -148,7 +148,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonSpring(uint8_t index, uint8_t zo } /** - * Season winter + * Season summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -178,7 +178,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonSummer(uint8_t index, uint8_t zo } /** - * Season winter + * Autumn summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -208,7 +208,7 @@ extern BOOL vscp_evt_weather_forecast_sendAutumnSummer(uint8_t index, uint8_t zo } /** - * Season winter + * No wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -238,7 +238,7 @@ extern BOOL vscp_evt_weather_forecast_sendNoWind(uint8_t index, uint8_t zone, ui } /** - * Season winter + * Low wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -268,7 +268,7 @@ extern BOOL vscp_evt_weather_forecast_sendLowWind(uint8_t index, uint8_t zone, u } /** - * Season winter + * Medium wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -298,7 +298,7 @@ extern BOOL vscp_evt_weather_forecast_sendMediumWind(uint8_t index, uint8_t zone } /** - * Season winter + * High wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -328,7 +328,7 @@ extern BOOL vscp_evt_weather_forecast_sendHighWind(uint8_t index, uint8_t zone, } /** - * Season winter + * Very high wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -358,7 +358,7 @@ extern BOOL vscp_evt_weather_forecast_sendVeryHighWind(uint8_t index, uint8_t zo } /** - * Season winter + * Air foggy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirFoggy(uint8_t index, uint8_t zone, } /** - * Season winter + * Air freezing * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -418,7 +418,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirFreezing(uint8_t index, uint8_t zon } /** - * Season winter + * Air Very cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -448,7 +448,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirVeryCold(uint8_t index, uint8_t zon } /** - * Season winter + * Air cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -478,7 +478,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirCold(uint8_t index, uint8_t zone, u } /** - * Season winter + * Air normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -508,7 +508,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirNormal(uint8_t index, uint8_t zone, } /** - * Season winter + * Air hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -538,7 +538,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirHot(uint8_t index, uint8_t zone, ui } /** - * Season winter + * Air very hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -568,7 +568,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirVeryHot(uint8_t index, uint8_t zone } /** - * Season winter + * Pollution low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -598,7 +598,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionLow(uint8_t index, uint8_t zo } /** - * Season winter + * Pollution medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -628,7 +628,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionMedium(uint8_t index, uint8_t } /** - * Season winter + * Pollution high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -658,7 +658,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionHigh(uint8_t index, uint8_t z } /** - * Season winter + * Air humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -688,7 +688,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirHumid(uint8_t index, uint8_t zone, } /** - * Season winter + * Air dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -718,7 +718,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirDry(uint8_t index, uint8_t zone, ui } /** - * Season winter + * Soil humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -748,7 +748,7 @@ extern BOOL vscp_evt_weather_forecast_sendSoilHumid(uint8_t index, uint8_t zone, } /** - * Season winter + * Soil dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -778,7 +778,7 @@ extern BOOL vscp_evt_weather_forecast_sendSoilDry(uint8_t index, uint8_t zone, u } /** - * Season winter + * Rain none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -808,7 +808,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainNone(uint8_t index, uint8_t zone, } /** - * Season winter + * Rain light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -838,7 +838,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainLight(uint8_t index, uint8_t zone, } /** - * Season winter + * Rain heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -868,7 +868,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainHeavy(uint8_t index, uint8_t zone, } /** - * Season winter + * Rain very heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -898,7 +898,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainVeryHeavy(uint8_t index, uint8_t z } /** - * Season winter + * Sun none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -928,7 +928,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunNone(uint8_t index, uint8_t zone, u } /** - * Season winter + * Sun light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -958,7 +958,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunLight(uint8_t index, uint8_t zone, } /** - * Season winter + * Sun heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -988,7 +988,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunHeavy(uint8_t index, uint8_t zone, } /** - * Season winter + * Snow none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1018,7 +1018,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowNone(uint8_t index, uint8_t zone, } /** - * Season winter + * Snow light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1048,7 +1048,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowLight(uint8_t index, uint8_t zone, } /** - * Season winter + * Snow heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1078,7 +1078,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowHeavy(uint8_t index, uint8_t zone, } /** - * Season winter + * Dew point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1108,7 +1108,7 @@ extern BOOL vscp_evt_weather_forecast_sendDewPoint(uint8_t index, uint8_t zone, } /** - * Season winter + * Storm * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1138,7 +1138,7 @@ extern BOOL vscp_evt_weather_forecast_sendStorm(uint8_t index, uint8_t zone, uin } /** - * Season winter + * Flood * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1168,7 +1168,7 @@ extern BOOL vscp_evt_weather_forecast_sendFlood(uint8_t index, uint8_t zone, uin } /** - * Season winter + * Earthquake * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1198,7 +1198,7 @@ extern BOOL vscp_evt_weather_forecast_sendEarthquake(uint8_t index, uint8_t zone } /** - * Season winter + * Nuclear disaster * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1228,7 +1228,7 @@ extern BOOL vscp_evt_weather_forecast_sendNuclearDisaster(uint8_t index, uint8_t } /** - * Season winter + * Fire * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1258,7 +1258,7 @@ extern BOOL vscp_evt_weather_forecast_sendFire(uint8_t index, uint8_t zone, uint } /** - * Season winter + * Lightning * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1288,7 +1288,7 @@ extern BOOL vscp_evt_weather_forecast_sendLightning(uint8_t index, uint8_t zone, } /** - * Season winter + * UV Radiation low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1318,7 +1318,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationLow(uint8_t index, uint8_t } /** - * Season winter + * UV Radiation medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1348,7 +1348,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationMedium(uint8_t index, uint8 } /** - * Season winter + * UV Radiation normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1378,7 +1378,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationNormal(uint8_t index, uint8 } /** - * Season winter + * UV Radiation high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1408,7 +1408,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationHigh(uint8_t index, uint8_t } /** - * Season winter + * UV Radiation very high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1438,7 +1438,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationVeryHigh(uint8_t index, uin } /** - * Season winter + * Warning level 1 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1468,7 +1468,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel1(uint8_t index, uint8_t z } /** - * Season winter + * Warning level 2 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1498,7 +1498,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel2(uint8_t index, uint8_t z } /** - * Season winter + * Warning level 3 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1528,7 +1528,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel3(uint8_t index, uint8_t z } /** - * Season winter + * Warning level 4 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1558,7 +1558,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel4(uint8_t index, uint8_t z } /** - * Season winter + * Warning level 5 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -1588,7 +1588,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel5(uint8_t index, uint8_t z } /** - * Season winter + * Armageddon * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. diff --git a/src/framework/events/vscp_evt_weather_forecast.h b/src/framework/events/vscp_evt_weather_forecast.h index 37d4c33..e6f622a 100644 --- a/src/framework/events/vscp_evt_weather_forecast.h +++ b/src/framework/events/vscp_evt_weather_forecast.h @@ -91,7 +91,7 @@ extern BOOL vscp_evt_weather_forecast_sendGeneralEvent(void); extern BOOL vscp_evt_weather_forecast_sendSeasonWinter(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Season spring * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -102,7 +102,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonWinter(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendSeasonSpring(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Season summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -113,7 +113,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonSpring(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendSeasonSummer(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Autumn summer * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -124,7 +124,7 @@ extern BOOL vscp_evt_weather_forecast_sendSeasonSummer(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendAutumnSummer(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * No wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -135,7 +135,7 @@ extern BOOL vscp_evt_weather_forecast_sendAutumnSummer(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendNoWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Low wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -146,7 +146,7 @@ extern BOOL vscp_evt_weather_forecast_sendNoWind(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_forecast_sendLowWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Medium wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -157,7 +157,7 @@ extern BOOL vscp_evt_weather_forecast_sendLowWind(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_weather_forecast_sendMediumWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * High wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -168,7 +168,7 @@ extern BOOL vscp_evt_weather_forecast_sendMediumWind(uint8_t index, uint8_t zone extern BOOL vscp_evt_weather_forecast_sendHighWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Very high wind * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -179,7 +179,7 @@ extern BOOL vscp_evt_weather_forecast_sendHighWind(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendVeryHighWind(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air foggy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -190,7 +190,7 @@ extern BOOL vscp_evt_weather_forecast_sendVeryHighWind(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendAirFoggy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air freezing * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -201,7 +201,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirFoggy(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendAirFreezing(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air Very cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -212,7 +212,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirFreezing(uint8_t index, uint8_t zon extern BOOL vscp_evt_weather_forecast_sendAirVeryCold(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air cold * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -223,7 +223,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirVeryCold(uint8_t index, uint8_t zon extern BOOL vscp_evt_weather_forecast_sendAirCold(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -234,7 +234,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirCold(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_weather_forecast_sendAirNormal(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -245,7 +245,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirNormal(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendAirHot(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air very hot * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -256,7 +256,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirHot(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_forecast_sendAirVeryHot(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -267,7 +267,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirVeryHot(uint8_t index, uint8_t zone extern BOOL vscp_evt_weather_forecast_sendPollutionLow(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -278,7 +278,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionLow(uint8_t index, uint8_t zo extern BOOL vscp_evt_weather_forecast_sendPollutionMedium(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Pollution high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -289,7 +289,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionMedium(uint8_t index, uint8_t extern BOOL vscp_evt_weather_forecast_sendPollutionHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -300,7 +300,7 @@ extern BOOL vscp_evt_weather_forecast_sendPollutionHigh(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendAirHumid(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Air dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -311,7 +311,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirHumid(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendAirDry(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Soil humid * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -322,7 +322,7 @@ extern BOOL vscp_evt_weather_forecast_sendAirDry(uint8_t index, uint8_t zone, ui extern BOOL vscp_evt_weather_forecast_sendSoilHumid(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Soil dry * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -333,7 +333,7 @@ extern BOOL vscp_evt_weather_forecast_sendSoilHumid(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendSoilDry(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -344,7 +344,7 @@ extern BOOL vscp_evt_weather_forecast_sendSoilDry(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_weather_forecast_sendRainNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -355,7 +355,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainNone(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendRainLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -366,7 +366,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainLight(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendRainHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Rain very heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -377,7 +377,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainHeavy(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendRainVeryHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -388,7 +388,7 @@ extern BOOL vscp_evt_weather_forecast_sendRainVeryHeavy(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendSunNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -399,7 +399,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunNone(uint8_t index, uint8_t zone, u extern BOOL vscp_evt_weather_forecast_sendSunLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Sun heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -410,7 +410,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunLight(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendSunHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow none * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -421,7 +421,7 @@ extern BOOL vscp_evt_weather_forecast_sendSunHeavy(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendSnowNone(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow light * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -432,7 +432,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowNone(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendSnowLight(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Snow heavy * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -443,7 +443,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowLight(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendSnowHeavy(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Dew point * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -454,7 +454,7 @@ extern BOOL vscp_evt_weather_forecast_sendSnowHeavy(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendDewPoint(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Storm * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -465,7 +465,7 @@ extern BOOL vscp_evt_weather_forecast_sendDewPoint(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendStorm(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Flood * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -476,7 +476,7 @@ extern BOOL vscp_evt_weather_forecast_sendStorm(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_weather_forecast_sendFlood(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Earthquake * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -487,7 +487,7 @@ extern BOOL vscp_evt_weather_forecast_sendFlood(uint8_t index, uint8_t zone, uin extern BOOL vscp_evt_weather_forecast_sendEarthquake(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Nuclear disaster * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -498,7 +498,7 @@ extern BOOL vscp_evt_weather_forecast_sendEarthquake(uint8_t index, uint8_t zone extern BOOL vscp_evt_weather_forecast_sendNuclearDisaster(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Fire * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -509,7 +509,7 @@ extern BOOL vscp_evt_weather_forecast_sendNuclearDisaster(uint8_t index, uint8_t extern BOOL vscp_evt_weather_forecast_sendFire(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Lightning * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -520,7 +520,7 @@ extern BOOL vscp_evt_weather_forecast_sendFire(uint8_t index, uint8_t zone, uint extern BOOL vscp_evt_weather_forecast_sendLightning(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation low * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -531,7 +531,7 @@ extern BOOL vscp_evt_weather_forecast_sendLightning(uint8_t index, uint8_t zone, extern BOOL vscp_evt_weather_forecast_sendUvRadiationLow(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation medium * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -542,7 +542,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationLow(uint8_t index, uint8_t extern BOOL vscp_evt_weather_forecast_sendUvRadiationMedium(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation normal * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -553,7 +553,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationMedium(uint8_t index, uint8 extern BOOL vscp_evt_weather_forecast_sendUvRadiationNormal(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -564,7 +564,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationNormal(uint8_t index, uint8 extern BOOL vscp_evt_weather_forecast_sendUvRadiationHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * UV Radiation very high * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -575,7 +575,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationHigh(uint8_t index, uint8_t extern BOOL vscp_evt_weather_forecast_sendUvRadiationVeryHigh(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 1 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -586,7 +586,7 @@ extern BOOL vscp_evt_weather_forecast_sendUvRadiationVeryHigh(uint8_t index, uin extern BOOL vscp_evt_weather_forecast_sendWarningLevel1(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 2 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -597,7 +597,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel1(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendWarningLevel2(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 3 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -608,7 +608,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel2(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendWarningLevel3(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 4 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -619,7 +619,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel3(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendWarningLevel4(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Warning level 5 * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones. @@ -630,7 +630,7 @@ extern BOOL vscp_evt_weather_forecast_sendWarningLevel4(uint8_t index, uint8_t z extern BOOL vscp_evt_weather_forecast_sendWarningLevel5(uint8_t index, uint8_t zone, uint8_t subZone); /** - * Season winter + * Armageddon * * @param[in] index Index for sensor. * @param[in] zone Zone for which event applies to (0-255). 255 is all zones.