diff --git a/hcore/include/sensors/interoceptor.h b/hcore/include/sensors/interoceptor.h index 74b08d0..3a5dc7e 100644 --- a/hcore/include/sensors/interoceptor.h +++ b/hcore/include/sensors/interoceptor.h @@ -51,18 +51,19 @@ public: }; /** - * Negtrin and Postrin interoceptors are specialized intrinsic interoceptors that, unlike - * neutral interoceptors, have activation thresholds for different response levels - * (indication, alert, and overload). These thresholds allow them to trigger graduated - * responses based on stimulus intensity. + * Negtrin and Postrin interoceptors are specialized intrinsic interoceptors + * that, unlike neutral interoceptors, have activation thresholds for different + * response levels (indication, alert, and overload). These thresholds allow + * them to trigger graduated responses based on stimulus intensity. * - * While neutral interoceptors simply record a binary state or basic value, Negtrin and Postrin Interoceptors - * can model complex sensory responses with multiple activation levels, similar to biological - * pain/pleasure responses. Each threshold represents a different level of urgency or intensity in the + * While neutral interoceptors simply record a binary state or basic value, + * Negtrin and Postrin Interoceptors can model complex sensory responses with + * multiple activation levels, similar to biological pain/pleasure responses. + * Each threshold represents a different level of urgency or intensity in the * sensory input. * * @see IntrinInteroceptor for the threshold values and implementation details - *****************************************************************************************/ + ******************************************************************************/ class NegtrinTeroceptor : public IntrinInteroceptor { @@ -73,7 +74,8 @@ public: uint32_t _indicationThreshold = DEFAULT_INDICATION_THRESHOLD, uint32_t _alertThreshold = DEFAULT_ALERT_THRESHOLD, uint32_t _overloadThreshold = DEFAULT_OVERLOAD_THRESHOLD) - : IntrinInteroceptor(_id, _value, _indicationThreshold, _alertThreshold, _overloadThreshold) + : IntrinInteroceptor(_id, _value, + _indicationThreshold, _alertThreshold, _overloadThreshold) {} }; @@ -86,7 +88,8 @@ public: uint32_t _indicationThreshold = DEFAULT_INDICATION_THRESHOLD, uint32_t _alertThreshold = DEFAULT_ALERT_THRESHOLD, uint32_t _overloadThreshold = DEFAULT_OVERLOAD_THRESHOLD) - : IntrinInteroceptor(_id, _value, _indicationThreshold, _alertThreshold, _overloadThreshold) + : IntrinInteroceptor(_id, _value, + _indicationThreshold, _alertThreshold, _overloadThreshold) {} };