| 116 | void SetSendAttempts( uint8 _count ){ m_sendAttempts = _count; } |
| 117 | |
| 118 | uint8 GetMaxSendAttempts()const{ return m_maxSendAttempts; } |
| 119 | void SetMaxSendAttempts( uint8 _count ){ if( _count < MAX_MAX_TRIES ) m_maxSendAttempts = _count; } |
| 120 | |
| 121 | bool IsWakeUpNoMoreInformationCommand() |
nothing calls this directly
no outgoing calls
no test coverage detected