ENABLE_3DCONNEXION_DEVICES -> Debug output of device features
This commit is contained in:
parent
8998a8e756
commit
a7972bcc77
@ -115,12 +115,10 @@ bool Mouse3DController::State::process_mouse_wheel()
|
|||||||
--m_mouse_wheel_counter;
|
--m_mouse_wheel_counter;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
m_mouse_wheel_counter = 0;
|
m_mouse_wheel_counter = 0;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void Mouse3DController::State::set_queues_max_size(size_t size)
|
void Mouse3DController::State::set_queues_max_size(size_t size)
|
||||||
{
|
{
|
||||||
@ -422,6 +420,22 @@ bool Mouse3DController::connect_device()
|
|||||||
std::cout << "Manufacturer id/product id hex: " << std::hex << vendor_id << "/" << product_id << std::dec << std::endl;
|
std::cout << "Manufacturer id/product id hex: " << std::hex << vendor_id << "/" << product_id << std::dec << std::endl;
|
||||||
std::cout << "Usage page....................: " << usage_page << std::endl;
|
std::cout << "Usage page....................: " << usage_page << std::endl;
|
||||||
std::cout << "Usage.........................: " << usage << std::endl << std::endl;
|
std::cout << "Usage.........................: " << usage << std::endl << std::endl;
|
||||||
|
|
||||||
|
std::cout << "Feature reports:" << std::endl;
|
||||||
|
for (int i = 0; i < 256; ++i)
|
||||||
|
{
|
||||||
|
DataPacket packet = { 0 };
|
||||||
|
packet[0] = (unsigned char)i;
|
||||||
|
int res = hid_get_feature_report(m_device, packet.data(), packet.size());
|
||||||
|
if (res > 0)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < res; ++j)
|
||||||
|
{
|
||||||
|
std::cout << " " << (int)packet[j];
|
||||||
|
}
|
||||||
|
std::cout << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
|
|
||||||
// get device parameters from the config, if present
|
// get device parameters from the config, if present
|
||||||
@ -505,8 +519,10 @@ void Mouse3DController::collect_input()
|
|||||||
updated = handle_packet(packet);
|
updated = handle_packet(packet);
|
||||||
else if (res == 13)
|
else if (res == 13)
|
||||||
updated = handle_wireless_packet(packet);
|
updated = handle_wireless_packet(packet);
|
||||||
|
#if ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
else if (res > 0)
|
else if (res > 0)
|
||||||
std::cout << "Got unknown data packet of length: " << res << ", code:" << (int)packet[0] << std::endl;
|
std::cout << "Got unknown data packet of length: " << res << ", code:" << (int)packet[0] << std::endl;
|
||||||
|
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
|
|
||||||
if (updated)
|
if (updated)
|
||||||
// ask for an idle event to update 3D scene
|
// ask for an idle event to update 3D scene
|
||||||
@ -540,7 +556,9 @@ bool Mouse3DController::handle_packet(const DataPacket& packet)
|
|||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
|
#if ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
std::cout << "Got unknown data packet of code: " << (int)packet[0] << std::endl;
|
std::cout << "Got unknown data packet of code: " << (int)packet[0] << std::endl;
|
||||||
|
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -571,7 +589,9 @@ bool Mouse3DController::handle_wireless_packet(const DataPacket& packet)
|
|||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
|
#if ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
std::cout << "Got unknown data packet of code: " << (int)packet[0] << std::endl;
|
std::cout << "Got unknown data packet of code: " << (int)packet[0] << std::endl;
|
||||||
|
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user