summaryrefslogtreecommitdiff
path: root/arcin/config.h
blob: a851e9ce60c2ec01b94e7d836f7440a2999f474d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef CONFIG_H
#define CONFIG_H

#include <stdint.h>

struct config_t {
	uint8_t label[12];
	uint32_t flags;
	int8_t qe1_sens;
	int8_t qe2_sens;
	uint8_t ps2_mode;
	uint8_t ws2812b_mode;
};

#endif