USB: Top Shot Elite device emulation

This commit is contained in:
Florin9doi 2024-04-26 16:24:26 +03:00 committed by Megamouse
parent a1a38b7b39
commit 088b594fa8
15 changed files with 587 additions and 19 deletions

View file

@ -205,6 +205,17 @@ namespace input
.capabilites = 0x0
}
},
{
product_type::top_shot_elite,
{
.type = product_type::top_shot_elite,
.class_id = CELL_PAD_FAKE_TYPE_TOP_SHOT_ELITE,
.vendor_id = vendor_id::sony_cea,
.product_id = product_id::top_shot_elite,
.pclass_profile = 0x0,
.capabilites = 0x0
}
},
{
product_type::udraw_gametablet,
{

View file

@ -19,6 +19,7 @@ namespace input
ps_move_navigation,
ride_skateboard,
guncon_3,
top_shot_elite,
udraw_gametablet,
};
@ -44,6 +45,7 @@ namespace input
ps_move_navigation = 0x042F, // PlayStation Move navigation controller
dance_dance_revolution_mat = 0x1010, // Dance Dance Revolution Dance Mat Controller
ride_skateboard = 0x0400, // Tony Hawk RIDE Skateboard Controller
top_shot_elite = 0x04A0, // Top Shot Elite Controller
guncon_3 = 0x0800, // GunCon 3 Controller
udraw_gametablet = 0xCB17, // uDraw GameTablet Controller
};