blob: ee00669ee590f09881625a301baa208d07f60be9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef RN42_TASK_H
#define RN42_TASK_H
#include <stdbool.h>
#include "rn42.h"
#ifdef NKRO_ENABLE
bool rn42_nkro_last;
#endif
void rn42_task_init(void);
void rn42_task(void);
#endif
|