driver-bitfury.h 487 B

123456789101112131415161718192021
  1. /*
  2. * Copyright 2013 Con Kolivas
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 3 of the License, or (at your option)
  7. * any later version. See COPYING for more details.
  8. */
  9. #ifndef BITFURY_H
  10. #define BITFURY_H
  11. #include "usbutils.h"
  12. struct bitfury_info {
  13. uint8_t version;
  14. char product[8];
  15. uint32_t serial;
  16. };
  17. #endif /* BITFURY_H */