forked from mirrors/qmk_userspace
		
	Add a couple of todos to keyboard_report_util.cpp
Also print the modifier state
This commit is contained in:
		
					parent
					
						
							
								43d8fa5bf1
							
						
					
				
			
			
				commit
				
					
						fb9b8dadb9
					
				
			
		
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
					@ -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) {
 | 
					std::ostream& operator<<(std::ostream& stream, const report_keyboard_t& value) {
 | 
				
			||||||
    stream << "Keyboard report:" << std::endl;
 | 
					    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)) {
 | 
					    for (uint32_t k: get_keys(value)) {
 | 
				
			||||||
        stream << k << std::endl;
 | 
					        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) {
 | 
					KeyboardReportMatcher::KeyboardReportMatcher(const std::vector<uint8_t>& keys) {
 | 
				
			||||||
 | 
					    // TODO: Support modifiers
 | 
				
			||||||
    memset(m_report.raw, 0, sizeof(m_report.raw));
 | 
					    memset(m_report.raw, 0, sizeof(m_report.raw));
 | 
				
			||||||
    for (auto k: keys) {
 | 
					    for (auto k: keys) {
 | 
				
			||||||
        add_key_to_report(&m_report, k);
 | 
					        add_key_to_report(&m_report, k);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue