Files
banan-os/kernel/include/kernel/Device/DeviceNumbers.h
Bananymous 65664b0d65 Kernel: Add support for DualShock 3 controllers
This driver accepts any HID joystick devices but button and axis
mappings will only work on a PS3 controller
2026-01-03 20:07:08 +02:00

30 lines
303 B
C++

#pragma once
#include <sys/types.h>
namespace Kernel
{
enum class DeviceNumber : dev_t
{
Framebuffer = 1,
TTY,
PTSMaster,
Null,
Zero,
Random,
Debug,
Keyboard,
Mouse,
Joystick,
SCSI,
NVMeController,
NVMeNamespace,
Ethernet,
Loopback,
TmpFS,
AudioController,
};
}