cdp: add accessibility domain

This commit is contained in:
Pierre Tachoire
2025-11-19 12:07:42 +01:00
committed by Karl Seguin
parent 33ee2fb1a0
commit 1278dc28cd
2 changed files with 43 additions and 0 deletions

View File

@@ -231,6 +231,11 @@ pub fn CDPT(comptime TypeProvider: type) type {
asUint(u88, "Performance") => return @import("domains/performance.zig").processMessage(command),
else => {},
},
13 => switch (@as(u104, @bitCast(domain[0..13].*))) {
asUint(u104, "Accessibility") => return @import("domains/accessibility.zig").processMessage(command),
else => {},
},
else => {},
}