summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-06-18 23:22:12 +0200
committerFred Sundvik <fsundvik@gmail.com>2017-06-18 23:22:12 +0200
commitfb9b8dadb97e69f2c206a96e879a9350b535fe98 (patch)
treeb9165b982613290de8b34dd749d6ac6db3c2b429 /tests
parent43d8fa5bf1248ce5c1ce5f9cb0d238d794b4475d (diff)
downloadqmk_firmware-fb9b8dadb97e69f2c206a96e879a9350b535fe98.tar.gz
qmk_firmware-fb9b8dadb97e69f2c206a96e879a9350b535fe98.tar.xz
Add a couple of todos to keyboard_report_util.cpp
Also print the modifier state
Diffstat (limited to 'tests')
-rw-r--r--tests/test_common/keyboard_report_util.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_common/keyboard_report_util.cpp b/tests/test_common/keyboard_report_util.cpp
index 34e53cd4c..aca4433dd 100644
--- a/tests/test_common/keyboard_report_util.cpp
+++ b/tests/test_common/keyboard_report_util.cpp
@@ -47,6 +47,8 @@ bool operator==(const report_keyboard_t& lhs, const report_keyboard_t& rhs) {
std::ostream& operator<<(std::ostream& stream, const report_keyboard_t& value) {
stream << "Keyboard report:" << std::endl;
+ stream << "Mods: " << value.mods << std::endl;
+ // TODO: This should probably print friendly names for the keys
for (uint32_t k: get_keys(value)) {
stream << k << std::endl;
}
@@ -54,6 +56,7 @@ std::ostream& operator<<(std::ostream& stream, const report_keyboard_t& value) {
}
KeyboardReportMatcher::KeyboardReportMatcher(const std::vector<uint8_t>& keys) {
+ // TODO: Support modifiers
memset(m_report.raw, 0, sizeof(m_report.raw));
for (auto k: keys) {
add_key_to_report(&m_report, k);