Skip to content

Commit

Permalink
fixup! refactor: modernize bulksupport allowlist
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftb0y committed Sep 6, 2024
1 parent 7b712fa commit 4d58f6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/controllers/bulk/bulksupported.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ struct bulk_supported_t {
std::uint16_t product_id;
std::uint8_t in_epaddr;
std::uint8_t out_epaddr;
std::uint32_t interface_number = 0;
std::uint32_t interface_number;
};

constexpr static bulk_supported_t bulk_supported[] = {
{0x06f8, 0xb105, 0x82, 0x03}, // Hercules MP3e2
{0x06f8, 0xb107, 0x83, 0x03}, // Hercules Mk4
{0x06f8, 0xb100, 0x86, 0x06}, // Hercules Mk2
{0x06f8, 0xb120, 0x82, 0x03}, // Hercules MP3 LE / Glow
{0x06f8, 0xb105, 0x82, 0x03, 0}, // Hercules MP3e2
{0x06f8, 0xb107, 0x83, 0x03, 0}, // Hercules Mk4
{0x06f8, 0xb100, 0x86, 0x06, 0}, // Hercules Mk2
{0x06f8, 0xb120, 0x82, 0x03, 0}, // Hercules MP3 LE / Glow
};

0 comments on commit 4d58f6b

Please sign in to comment.