94655a903d1830384a3107e8f9d616b07940f2aa
9 MM_FIRST_SLOW_SAMPLE
, /* If clock arrives, we stay on the fast path! */
11 MM_FAST_WAIT_FOR_CLOCK
,
13 MM_SLOW_WAIT_FOR_CLOCK
,
16 #ifdef MM_USE_REGISTER_VARS
18 uint8_t register shift_command
asm("r2");
19 uint8_t register shift_function
asm("r3");
20 uint8_t register shift_address
asm("r4");
21 uint8_t register recstate
asm("r5");
22 uint8_t register bitno
asm("r6");
24 static void inline __attribute((unused
)) mm_init(void)
37 * mm_switch_command - Callback function!
39 * This function must be defined whenever the mm_switch module is used.
40 * It will be called from interrupt context whenever a new valid command
43 * decoder is in the range from 1 to 25. Other values will not occur.
45 * key is in the range from 0 to 8:
47 * 1 - key1 green pressed
48 * 2 - key1 red pressed
49 * 3 - key2 green pressed
50 * 4 - key2 red pressed
55 void mm_switch_command(uint8_t decoder
, uint8_t key
);
60 void mm_switch_drive_cb(uint8_t address
, uint8_t speed
, uint8_t functions
, uint8_t flags
);
62 void mm_switch_drive(uint8_t decoder
, uint8_t function
, uint8_t command
);
64 void mm_pinchange_handler(void);