nRF5 SDK v17.1.0
Data Structures | Macros | Functions | Variables
USB HID keyboard internals

nRF52840 only: Module with types, definitions, and API used by the HID keyboard class. More...

Data Structures

struct  app_usbd_hid_kbd_inst_t
 HID keyboard part of class instance data. More...
 
struct  app_usbd_hid_kbd_ctx_t
 HID keyboard context. More...
 

Macros

#define APP_USBD_HID_KBD_CONFIG(iface, ep)   ((iface, ep))
 HID keyboard configuration macro. More...
 
#define APP_USBD_HID_KBD_INSTANCE_SPECIFIC_DEC   app_usbd_hid_kbd_inst_t inst;
 Specific class constant data for HID keyboard class.
 
#define APP_USBD_HID_KBD_DATA_SPECIFIC_DEC   app_usbd_hid_kbd_ctx_t ctx;
 Specific class data for HID keyboard class.
 
#define APP_USBD_HID_KBD_DEFAULT_INTERVAL   0x01
 Default interval value.
 
#define APP_USBD_HID_KBD_INTERVAL(ep)   (APP_USBD_EXTRACT_INTERVAL_FLAG(ep) ? APP_USBD_EXTRACT_INTERVAL_VALUE(ep) : APP_USBD_HID_KBD_DEFAULT_INTERVAL)
 
#define APP_USBD_HID_KBD_INST_CONFIG(report_buff_in,report_buff_out,user_ev_handler,subclass_boot,endpoint_list)
 Configure internal part of HID keyboard instance. More...
 
#define APP_USBD_HID_KBD_GLOBAL_DEF_INTERNAL(instance_name,interface_number,endpoint,user_ev_handler,subclass_boot)
 Global definition of app_usbd_hid_kbd_t class. More...
 

Functions

 APP_USBD_CLASS_FORWARD (app_usbd_hid_kbd)
 Forward declaration of HID keyboard class type.
 

Variables

const app_usbd_hid_methods_t app_usbd_hid_kbd_methods
 Public HID keyboard interface.
 
const app_usbd_class_methods_t app_usbd_hid_kbd_class_methods
 Public HID keyboard class interface.
 

Detailed Description

nRF52840 only: Module with types, definitions, and API used by the HID keyboard class.

Macro Definition Documentation

#define APP_USBD_HID_KBD_CONFIG (   iface,
  ep 
)    ((iface, ep))

HID keyboard configuration macro.

Used by APP_USBD_HID_KBD_GLOBAL_DEF.

#define APP_USBD_HID_KBD_GLOBAL_DEF_INTERNAL (   instance_name,
  interface_number,
  endpoint,
  user_ev_handler,
  subclass_boot 
)
Value:
static app_usbd_hid_report_buffer_t CONCAT_2(instance_name, _in)[1]; \
static uint8_t CONCAT_2(instance_name, _ep) = {MACRO_MAP(APP_USBD_HID_KBD_INTERVAL,endpoint)}; \
APP_USBD_HID_GENERIC_GLOBAL_OUT_REP_DEF(CONCAT_2(instance_name, _out), 1 + 1); \
APP_USBD_CLASS_INST_GLOBAL_DEF( \
instance_name, \
app_usbd_hid_kbd, \
APP_USBD_HID_KBD_CONFIG(interface_number, endpoint), \
(APP_USBD_HID_KBD_INST_CONFIG(CONCAT_2(instance_name, _in), \
&CONCAT_2(instance_name, _out), \
user_ev_handler, \
subclass_boot, \
&CONCAT_2(instance_name, _ep))) \
)

Global definition of app_usbd_hid_kbd_t class.

APP_USBD_HID_KBD_GLOBAL_DEF

#define APP_USBD_HID_KBD_INST_CONFIG (   report_buff_in,
  report_buff_out,
  user_ev_handler,
  subclass_boot,
  endpoint_list 
)
Value:
.inst = { \
.hid_inst = APP_USBD_HID_INST_CONFIG(keyboard_descs, \
subclass_boot, \
report_buff_in, \
report_buff_out, \
NULL, \
user_ev_handler, \
endpoint_list), \
}

Configure internal part of HID keyboard instance.

Parameters
report_buff_inInput report buffers array.
report_buff_outOutput report buffer.
user_ev_handlerUser event handler.
subclass_bootSubclass boot (app_usbd_hid_subclass_t).
endpoint_listList of endpoints and intervals

Documentation feedback | Developer Zone | Subscribe | Updated