mirror of
https://github.com/google/pebble.git
synced 2025-04-30 07:21:39 -04:00
13 lines
602 B
Modula-2
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
|