~toykeeper/flashlight-firmware/trunk

« back to all changes in this revision

Viewing changes to ToyKeeper/spaghetti-monster/fsm-events.h

  • Committer: Selene Scriven
  • Date: 2020-07-06 20:24:28 UTC
  • mfrom: (188.1.294 fsm)
  • Revision ID: bzr@toykeeper.net-20200706202428-7pyen2ow9q2rtd9p
merged nearly a year of updates from the fsm branch, including the new product map

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
#ifdef USE_THERMAL_REGULATION
86
86
#define EV_temperature_high    (B_SYSTEM|0b00000101)
87
87
#define EV_temperature_low     (B_SYSTEM|0b00000110)
 
88
#define EV_temperature_okay    (B_SYSTEM|0b00000111)
88
89
#endif
89
90
 
90
91
// Button press events
217
218
void emit_current_event(uint16_t arg);
218
219
 
219
220
uint8_t nice_delay_ms(uint16_t ms);
220
 
//uint8_t nice_delay_4ms(uint8_t ms);
221
221
//uint8_t nice_delay_s();
222
222
inline void interrupt_nice_delays();
 
223
void delay_4ms(uint8_t ms);
223
224
 
224
225
#endif