驱动程序中的 FIDL

设备可以实现 ddk::Messagable mixin,以便由 devfs 发送消息 当客户端尝试连接到驱动程序时触发。驱动程序必须实现 ddk::Messagable 特定的 FIDL 接口, 说话。

例如,实现 fuchsia_input_report::InputDevice 接口的类定义可能如下所示:

class InputReportDriver;
using DriverDeviceType = ddk::Device<InputReportDriver, ddk::Unbindable,
                                     ddk::Messageable<fuchsia_input_report::InputDevice>::Mixin>;
class InputReportDriver : public DriverDeviceType{
    // Implement the class methods here.
};

希望与此设备对话的客户端会在 /dev/class/input-report/,并开始发送 FIDL 消息。