* @brief Displays raw data from the playback path (no device routing). */
| 803 | * @brief Displays raw data from the playback path (no device routing). |
| 804 | */ |
| 805 | void Console::Handler::hotpathRxData(const QByteArray& data) |
| 806 | { |
| 807 | if (data.isEmpty()) |
| 808 | return; |
| 809 | |
| 810 | append(dataToString(data), showTimestamp()); |
| 811 | } |
| 812 | |
| 813 | /** |
| 814 | * @brief Routes incoming raw data to the per-device console buffer. |
no test coverage detected