----------------------------------------------------------------------------- Process a response from the Z-Wave PC interface -----------------------------------------------------------------------------
| 2711 | // Process a response from the Z-Wave PC interface |
| 2712 | //----------------------------------------------------------------------------- |
| 2713 | void Driver::HandleSerialAPIResetRequest |
| 2714 | ( |
| 2715 | uint8* _data |
| 2716 | ) |
| 2717 | { |
| 2718 | Log::Write( LogLevel_Info, GetNodeNumber( m_currentMsg ), "Received reply to complete Controller Reset." ); |
| 2719 | if( m_controllerResetEvent != NULL ) |
| 2720 | { |
| 2721 | m_controllerResetEvent->Set(); |
| 2722 | m_controllerResetEvent = NULL; |
| 2723 | } |
| 2724 | } |
| 2725 | |
| 2726 | //----------------------------------------------------------------------------- |
| 2727 | // <Driver::HandleEnableSUCResponse> |