1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// tactical-mode.h: Tactical mode for Anduril.
// Copyright (C) 2023 Selene ToyKeeper
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#ifndef TACTICAL_LEVELS
// high, low, tactical strobe
// only do color strobe here if it's main LEDs, not aux LEDs
#if defined(USE_POLICE_COLOR_STROBE_MODE) && !defined(POLICE_STROBE_USES_AUX)
// 2-color police style strobe
#define TACTICAL_LEVELS 120,30,(RAMP_SIZE+3)
#else
// regular tactical strobe (1 color)
#define TACTICAL_LEVELS 120,30,(RAMP_SIZE+2)
#endif
#endif
// tactical(ish) mode
uint8_t tactical_state(Event event, uint16_t arg);
uint8_t tactical_config_state(Event event, uint16_t arg);
|