add usb audio, cdc, and midi stub files for doxy

- add stub files to relevant makefiles
- include <stdint.h> in respective headers to fix compilation
This commit is contained in:
Graham Keeth
2020-05-23 18:17:21 -04:00
committed by Karl Palsson
parent 05f07c1051
commit d4d4c798a6
19 changed files with 79 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ LGPL License Terms @ref lgpl_license
#ifndef LIBOPENCM3_USB_AUDIO_H
#define LIBOPENCM3_USB_AUDIO_H
#include <stdint.h>
/*
* Definitions from the USB_AUDIO_ or usb_audio_ namespace come from:
* "Universal Serial Bus Class Definitions for Audio Devices, Revision 1.0"

View File

@@ -38,6 +38,8 @@ LGPL License Terms @ref lgpl_license
#ifndef __CDC_H
#define __CDC_H
#include <stdint.h>
/* Definitions of Communications Device Class from
* "Universal Serial Bus Class Definitions for Communications Devices
* Revision 1.2"

View File

@@ -38,6 +38,8 @@ LGPL License Terms @ref lgpl_license
#ifndef LIBOPENCM3_USB_MIDI_H
#define LIBOPENCM3_USB_MIDI_H
#include <stdint.h>
/*
* Definitions from the USB_MIDI_ or usb_midi_ namespace come from:
* "Universal Serial Bus Class Definitions for MIDI Devices, Revision 1.0"