]> git.donarmstrong.com Git - qmk_firmware.git/blob - virtser.h
74891b6ae0a6800f63851a60ed0c57cc0f13bb60
[qmk_firmware.git] / 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