Skip to content
Snippets Groups Projects
Commit 787dc2fb authored by schneider's avatar schneider
Browse files

fix(hid): Minor cleanup

parent 85d96613
No related branches found
No related tags found
1 merge request!382HID over BLE
Pipeline #5031 passed
......@@ -756,7 +756,6 @@ static void scannerScanReport(dmEvt_t *pMsg)
* \return None.
*/
/*************************************************************************************************/
void HidProcMsg(wsfMsgHdr_t *pMsg);
static void bleProcMsg(bleMsg_t *pMsg)
{
hciLeConnCmplEvt_t *connOpen;
......@@ -774,7 +773,7 @@ static void bleProcMsg(bleMsg_t *pMsg)
case ATTS_HANDLE_VALUE_CNF:
BasProcMsg(&pMsg->hdr);
HidProcMsg(&pMsg->hdr);
HidProcMsg(&pMsg->hdr);
break;
case ATTS_CCC_STATE_IND:
......
......@@ -9,7 +9,6 @@
#include "att_api.h"
#include "svc_hid.h"
#include "hid/hid_api.h"
//#include "hidapp/hidapp_api.h"
#include "modules/log.h"
......
#pragma once
#include "wsf_types.h"
#include "wsf_os.h"
/* The input report fits in one byte */
#define HIDAPP_KEYBOARD_INPUT_REPORT_LEN 8
#define HIDAPP_MOUSE_INPUT_REPORT_LEN 4
......@@ -14,3 +17,4 @@
#define HIDAPP_CONSUMER_REPORT_ID 3
void hid_init(void);
void HidProcMsg(wsfMsgHdr_t *pMsg);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment