add app, profile

This commit is contained in:
Richard Goulter
2023-12-20 22:59:19 +07:00
parent 1294d9f0c0
commit 7500f5489a
13 changed files with 5032 additions and 0 deletions

62
app/include/hidkbd.h Normal file
View File

@ -0,0 +1,62 @@
/********************************** (C) COPYRIGHT *******************************
* File Name : hidkbd.h
* Author : WCH
* Version : V1.0
* Date : 2018/12/10
* Description :
*********************************************************************************
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
* Attention: This software (modified or not) and binary are used for
* microcontroller manufactured by Nanjing Qinheng Microelectronics.
*******************************************************************************/
#ifndef HIDKBD_H
#define HIDKBD_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************************************************************
* INCLUDES
*/
/*********************************************************************
* CONSTANTS
*/
// Task Events
#define START_DEVICE_EVT 0x0001
#define START_REPORT_EVT 0x0002
#define START_PARAM_UPDATE_EVT 0x0004
#define START_PHY_UPDATE_EVT 0x0008
/*********************************************************************
* MACROS
*/
/*********************************************************************
* FUNCTIONS
*/
/*********************************************************************
* GLOBAL VARIABLES
*/
/*
* Task Initialization for the BLE Application
*/
extern void HidEmu_Init(void);
/*
* Task Event Processor for the BLE Application
*/
extern uint16_t HidEmu_ProcessEvent(uint8_t task_id, uint16_t events);
/*********************************************************************
*********************************************************************/
#ifdef __cplusplus
}
#endif
#endif