Dwayne Dilbeck / USBDevice

Dependents:   HW4_AudioControl

Fork of USBDevice by mbed official

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HID_REPORT.cpp Source File

HID_REPORT.cpp

00001 #include "mbed.h"
00002 #include "HID_REPORT.h"
00003 
00004 HID_REPORT::HID_REPORT(int length){
00005     this->length=length;
00006     if (length >0) {
00007        data= new uint8_t[length];
00008     } else {
00009        data=NULL;
00010     }
00011 }
00012 
00013 
00014