----------------------------------------------------------------------------- Set the USB product ID search value. The HID port must be closed for the setting to be accepted. -----------------------------------------------------------------------------
| 96 | // Set the USB product ID search value. The HID port must be closed for the setting to be accepted. |
| 97 | //----------------------------------------------------------------------------- |
| 98 | bool HidController::SetProductId |
| 99 | ( |
| 100 | uint32 const _productId |
| 101 | ) |
| 102 | { |
| 103 | if( m_bOpen ) |
| 104 | { |
| 105 | return false; |
| 106 | } |
| 107 | |
| 108 | m_productId = _productId; |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | //----------------------------------------------------------------------------- |
| 113 | // <HidController::SetSerialNumber> |
no outgoing calls