]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common/virtser.h
ergodox qwerty_code_friendly: add macro keys (#1918)
[qmk_firmware.git] / tmk_core / common / virtser.h
1 #ifndef _VIRTSER_H_
2 #define _VIRTSER_H_
3
4 /* Define this function in your code to process incoming bytes */
5 void virtser_recv(const uint8_t ch);
6
7 /* Call this to send a character over the Virtual Serial Device */
8 void virtser_send(const uint8_t byte);
9
10 #endif