CONFIG_COLLISION_MUTE_ZONE_PROPERTY
This structure defines the property information for collision monitoring mute zones, which are spaces where collision detection is temporarily disabled.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Unique ID string identifying the mute zone. |
|
32 |
|
|
Enable flag |
|
33 |
|
|
Collision sensitivity (0-100%) |
|
37 |
|
Definition of the mute zone geometry and boundaries. |
Total size: 139 bytes
Defined in: DRFS.h
typedef struct _CONFIG_COLLISION_MUTE_ZONE_PROPERTY
{
char _szIdentifier[32]; // ID
unsigned char _iOnOff; // enable flag
#ifdef INFRACORE_PATCH
unsigned char _iSafetyIO; // optional: safety I/O config (patch only)
#endif
float _fSensitivity; // collision sensitivity (0–100%)
SAFETY_OBJECT _tZone; // geometry definition of mute zone
} CONFIG_COLLISION_MUTE_ZONE_PROPERTY, *LPCONFIG_COLLISION_MUTE_ZONE_PROPERTY;