pebble/src/fw/console/pulse_bulkio_handler.def
2025-01-27 11:38:16 -08:00

13 lines
602 B
Modula-2

// Syntax: REGISTER_BULKIO_HANDLER(domain_type, domain_id, vtable)
// where vtable is a PulseBulkIODomainHandler, domain_id is a
// number that defines that domain and must never change,
// and domain_type is a name for the domain.
REGISTER_BULKIO_HANDLER(Memory, 1, pulse_bulkio_domain_memory)
REGISTER_BULKIO_HANDLER(ExternalFlash, 2, pulse_bulkio_domain_external_flash)
REGISTER_BULKIO_HANDLER(Framebuffer, 3, pulse_bulkio_domain_framebuffer)
REGISTER_BULKIO_HANDLER(Coredump, 4, pulse_bulkio_domain_coredump)
#if !RECOVERY_FW
REGISTER_BULKIO_HANDLER(PFS, 5, pulse_bulkio_domain_pfs)
#endif