Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
  2. This software may be distributed and modified under the terms of the GNU
  3. General Public License version 2 (GPL2) as published by the Free Software
  4. Foundation and appearing in the file GPL2.TXT included in the packaging of
  5. this file. Please note that GPL2 Section 2[b] requires that all works based
  6. on this software must also be made publicly available under the terms of
  7. the GPL2 ("Copyleft").
  8. Contact information
  9. -------------------
  10. Circuits At Home, LTD
  11. Web : http://www.circuitsathome.com
  12. e-mail : [email protected]
  13. */
  14. /* USB functions */
  15. #ifndef _usb_h_
  16. #define _usb_h_
  17. // WARNING: Do not change the order of includes, or stuff will break!
  18. #include <inttypes.h>
  19. #include <stddef.h>
  20. #include <stdio.h>
  21. // None of these should ever be included by a driver, or a user's sketch.
  22. #include "settings.h"
  23. #include "printhex.h"
  24. #include "message.h"
  25. #include "hexdump.h"
  26. #include "sink_parser.h"
  27. #include "max3421e.h"
  28. #include "address.h"
  29. #include "avrpins.h"
  30. #include "usb_ch9.h"
  31. #include "usbhost.h"
  32. #include "UsbCore.h"
  33. #include "parsetools.h"
  34. #include "confdescparser.h"
  35. #endif //_usb_h_