~digitalcircuit/flashlight-firmware/anduril2_define_autolock

« back to all changes in this revision

Viewing changes to ToyKeeper/spaghetti-monster/anduril/ramp-mode.h

  • Committer: Selene Scriven
  • Date: 2021-01-25 05:21:06 UTC
  • mfrom: (575.1.13 k9.3)
  • Revision ID: bzr@toykeeper.net-20210125052106-g6la42mdcu9dl42r
merged noctigon k9.3 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
// brightness control
149
149
uint8_t memorized_level = DEFAULT_LEVEL;
150
150
#ifdef USE_MANUAL_MEMORY
151
 
uint8_t manual_memory = 0;
 
151
#ifndef DEFAULT_MANUAL_MEMORY
 
152
#define DEFAULT_MANUAL_MEMORY 0
 
153
#endif
 
154
uint8_t manual_memory = DEFAULT_MANUAL_MEMORY;
152
155
#ifdef USE_MANUAL_MEMORY_TIMER
153
 
uint8_t manual_memory_timer = 0;
 
156
#ifndef DEFAULT_MANUAL_MEMORY_TIMER
 
157
#define DEFAULT_MANUAL_MEMORY_TIMER 0
 
158
#endif
 
159
uint8_t manual_memory_timer = DEFAULT_MANUAL_MEMORY_TIMER;
154
160
#endif
155
161
#endif
156
162
#ifdef USE_SIMPLE_UI