~toykeeper/flashlight-firmware/fsm

« back to all changes in this revision

Viewing changes to ToyKeeper/spaghetti-monster/anduril/cfg-blf-gt.h

  • Committer: Selene ToyKeeper
  • Date: 2023-11-04 15:09:10 UTC
  • mfrom: (483.1.175 anduril2)
  • Revision ID: bzr@toykeeper.net-20231104150910-ddd3afw4nhfvof2l
merged anduril2 branch -> fsm, with *years* of changes
(this also means this code is now Anduril 2 instead of Anduril 1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// BLF GT config options for Anduril
2
 
#include "hwdef-BLF_GT.h"
 
2
// Copyright (C) 2018-2023 Selene ToyKeeper
 
3
// SPDX-License-Identifier: GPL-3.0-or-later
 
4
#pragma once
 
5
 
 
6
#define MODEL_NUMBER "0321"
 
7
#include "hwdef-blf-gt.h"
 
8
// ATTINY: 85
3
9
 
4
10
// the button lights up
5
11
#define USE_INDICATOR_LED
6
12
// the button is visible while main LEDs are on
7
13
#define USE_INDICATOR_LED_WHILE_RAMPING
8
 
// enable blinking indicator LED while off
9
 
#define TICK_DURING_STANDBY
10
 
 
11
 
// don't blink during ramp, it's irrelevant and annoying on this light
12
 
#undef BLINK_AT_RAMP_CEILING
13
 
#undef BLINK_AT_RAMP_MIDDLE
14
 
#undef BLINK_AT_RAMP_FLOOR
15
 
 
16
 
//#undef USE_SET_LEVEL_GRADUALLY
17
 
 
18
 
#define RAMP_LENGTH 150
 
14
 
 
15
#define RAMP_SIZE 150
 
16
 
19
17
// First 60 values: level_calc.py 1 60 7135 4 5.0 255
20
18
// Remainder: all 255 (buck driver at 100% duty cycle)
21
19
#define PWM1_LEVELS 4,5,6,6,7,8,9,11,12,13,15,16,18,19,21,23,25,27,30,32,34,37,40,43,46,49,52,55,59,63,66,70,75,79,83,88,93,98,103,108,114,119,125,131,137,144,150,157,164,171,179,186,194,202,210,219,228,236,246,255, \
26
24
    26,27,28,29,30,31,32,33,35,36,37,38,40,41,42,44,45,47,48,50,51,53,54,56,58,59,61,63,65,67,69,70,72,74,76,79,81,83,85,87,89,92,94,96,99,101,104,106,109,112,114,117,120,123,125,128,131,134,137,140,143,147,150,153,156,160,163,167,170,174,177,181,184,188,192,196,200,204,208,212,216,220,224,228,233,237,241,246,250,255
27
25
#define POWER_80PX 138  // 2.0 Amps out of maximum 2.5 Amps
28
26
#define MAX_1x7135 60   // where it switches from PWM to current control
 
27
#define DEFAULT_LEVEL 69  // nice
29
28
#define HALFSPEED_LEVEL 17
30
29
#define QUARTERSPEED_LEVEL 6
31
30
 
32
31
// use 2.0 A as the ceiling, 2.5 A only for turbo
33
32
// start both ramps at the bottom; even moon throws a long way on the GT
34
33
#define RAMP_SMOOTH_FLOOR 1
35
 
#define RAMP_SMOOTH_CEIL POWER_80PX
 
34
#define RAMP_SMOOTH_CEIL  POWER_80PX
 
35
// 1 23 46 [69] 92 115 138
36
36
#define RAMP_DISCRETE_FLOOR 1
37
 
#define RAMP_DISCRETE_CEIL POWER_80PX
 
37
#define RAMP_DISCRETE_CEIL  POWER_80PX
38
38
#define RAMP_DISCRETE_STEPS 7
39
39
 
 
40
// GT can handle heat well, so don't limit simple mode
 
41
#define SIMPLE_UI_FLOOR RAMP_DISCRETE_FLOOR
 
42
#define SIMPLE_UI_CEIL RAMP_DISCRETE_CEIL
 
43
#define SIMPLE_UI_STEPS 5
 
44
 
 
45
// smoother, more wobbly candle
 
46
#define CANDLE_AMPLITUDE 33
 
47
 
 
48
// turbo (i.e. "giggles" mode), low, tactical strobe
 
49
#define TACTICAL_LEVELS 150,30,(RAMP_SIZE+2)
 
50
 
40
51
// stop panicking at 80% power, this light has plenty of thermal mass
41
52
#define THERM_FASTER_LEVEL POWER_80PX  // throttle back faster when high
42
53
 
 
54
// don't blink during ramp, it's irrelevant and annoying on this light
 
55
#undef BLINK_AT_RAMP_CEIL
 
56
#undef BLINK_AT_RAMP_MIDDLE
 
57
#undef BLINK_AT_RAMP_FLOOR
 
58
 
 
59
// too big, turn off extra features
 
60
//#undef USE_TACTICAL_MODE
 
61
#undef USE_SOS_MODE
 
62