Import of the watch repository from Pebble

This commit is contained in:
Matthieu Jeanson
2024-12-12 16:43:03 -08:00
committed by Katharine Berry
commit 3b92768480
10334 changed files with 2564465 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// 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