| 771 | //----------------------------------------------------------------------------- |
| 772 | |
| 773 | void CommandClass::SetStaticRequest |
| 774 | ( |
| 775 | uint8_t _request |
| 776 | ) |
| 777 | { |
| 778 | uint8_t f_staticRequests = m_dom.GetFlagByte(STATE_FLAG_STATIC_REQUESTS); |
| 779 | f_staticRequests |= _request; |
| 780 | m_dom.SetFlagByte(STATE_FLAG_STATIC_REQUESTS, f_staticRequests); |
| 781 | } |
| 782 | |
| 783 | //----------------------------------------------------------------------------- |
| 784 | // <CommandClass::RequestStateForAllInstances> |
no test coverage detected