aboutsummaryrefslogtreecommitdiffstats
path: root/src/hid.h
blob: 79e03483e0d47b193d2e2e12012cfda02089c67c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <stdbool.h>
#include <stdint.h>

#define REPORT_ID_MIN REPORT_ID_KEYBOARD
enum {
	REPORT_ID_KEYBOARD = 1,
	REPORT_ID_MOUSE,
	REPORT_ID_CONSUMER_CONTROL,
	REPORT_ID_MAX
};

void hid_init(void);
void hid_task(void);