summaryrefslogtreecommitdiff
path: root/Kernel/Bus/USB/USBConstants.h
blob: 98747c315c06a8f8252fc7bad02c50ab219de9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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;

}