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