/************************************************************************debug.hWFF USB Generic HID Demonstration 3usbGenericHidCommunication reference firmware 3_0_0_0Copyright (C) 2011 Simon InnsThis program is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program. If not, see <http://www.gnu.org/licenses/>.Email: simon.inns@gmail.com************************************************************************/#ifndef DEBUG_H#define DEBUG_H// Microchip Application Library includes// (expects V2.9a of the USB library from "Microchip Solutions v2011-07-14")#include "./USB/usb.h"#include "./USB/usb_function_hid.h"// Set the size of the debug information buffer in characters#define DEBUGBUFFERSIZE 128// Function prototypesvoid debugInitialise(void);void debugOut(char*);void copyDebugToSendBuffer(BYTE* sendDataBuffer);#endif