USBConstants.h 256 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Types.h>
  8. namespace Kernel::USB {
  9. // USB 2.0 Specification Section 9.4.6
  10. static constexpr u8 USB_MAX_ADDRESS = 127;
  11. }