mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 09:48:47 +00:00
16 lines
256 B
C++
16 lines
256 B
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Kernel::USB {
|
|
|
|
// USB 2.0 Specification Section 9.4.6
|
|
static constexpr u8 USB_MAX_ADDRESS = 127;
|
|
|
|
}
|