forked from forks/qmk_firmware
5477bf39bf
* add hhkb bluetooth functionality (rn42)
pretty much straight from tmk
some minor changes to make things work
* hhkb jp personal keymap
* Revert "hhkb jp personal keymap"
This reverts commit 886713d8bb
.
15 lines
186 B
C
15 lines
186 B
C
#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
|