Clean up mbed_onekey
This commit is contained in:
parent
59ea5e02f7
commit
50bcaa66c4
3 changed files with 1 additions and 32 deletions
|
@ -1,10 +1,7 @@
|
|||
#include "mbed.h"
|
||||
#include "debug.h"
|
||||
#include "timer.h"
|
||||
#include "action.h"
|
||||
#include "keycode.h"
|
||||
#include "host.h"
|
||||
#include "host_driver.h"
|
||||
#include "mbed_driver.h"
|
||||
|
||||
|
||||
|
@ -19,21 +16,14 @@ int main(void) {
|
|||
led_red = 1;
|
||||
led_green = 0;
|
||||
|
||||
timer_init();
|
||||
host_set_driver(&mbed_driver);
|
||||
|
||||
//debug_enable = true;
|
||||
xprintf("mbed_onekey ver.eee:\r\n");
|
||||
|
||||
|
||||
bool last_isp = isp;
|
||||
while (1) {
|
||||
//led_green = !led_green;
|
||||
if (last_isp == isp) continue;
|
||||
last_isp = isp;
|
||||
if (last_isp == 0) {
|
||||
led_red = 0; // on
|
||||
dprintf("timer: %i\r\n", timer_read());
|
||||
register_code(KC_A);
|
||||
} else {
|
||||
led_red = 1; // off
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue