Skip to content

Commit

Permalink
getting other keyboards to build
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Oct 3, 2024
1 parent 9bd2604 commit a4437c2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/keyboards/example/kb.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include "report.h"
#include "usb.h"

void kb_send_report(report_keyboard_t *report)
{
usb_send_report(report);
}
7 changes: 7 additions & 0 deletions src/keyboards/eyooso-z11/kb.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include "report.h"
#include "usb.h"

void kb_send_report(report_keyboard_t *report)
{
usb_send_report(report);
}

0 comments on commit a4437c2

Please sign in to comment.