reform

MNT Reform: Open Source Portable Computer
Log (Feed) | Files | Refs (Tags) | README

hid_report.h (216B)


      1 /*
      2   MNT Reform 2.0 Keyboard Firmware
      3   See keyboard.c for Copyright
      4   SPDX-License-Identifier: MIT
      5 */
      6 
      7 #ifndef _HID_REPORT_H_
      8 #define _HID_REPORT_H_
      9 
     10 #include <stdint.h>
     11 
     12 void hid_report_cmd(uint8_t* data);
     13 
     14 #endif