~toykeeper/flashlight-firmware/fsm

« back to all changes in this revision

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

  • Committer: Selene ToyKeeper
  • Date: 2023-11-02 17:05:02 UTC
  • mfrom: (483.12.159 multi-channel)
  • mto: This revision was merged to the branch mainline in revision 491.
  • Revision ID: bzr@toykeeper.net-20231102170502-sinkm18qjxlorsxa
merged multi-channel branch with a major refactor and half a year of updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * lockout-mode.h: Lockout mode for Anduril.
3
 
 *
4
 
 * Copyright (C) 2017 Selene Scriven
5
 
 *
6
 
 * This program is free software: you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation, either version 3 of the License, or
9
 
 * (at your option) any later version.
10
 
 *
11
 
 * This program is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 
 */
 
1
// lockout-mode.h: Lockout mode for Anduril.
 
2
// Copyright (C) 2017-2023 Selene ToyKeeper
 
3
// SPDX-License-Identifier: GPL-3.0-or-later
19
4
 
20
 
#ifndef LOCKOUT_MODE_H
21
 
#define LOCKOUT_MODE_H
 
5
#pragma once
22
6
 
23
7
// soft lockout
24
8
uint8_t lockout_state(Event event, uint16_t arg);
27
11
#ifndef DEFAULT_AUTOLOCK_TIME
28
12
#define DEFAULT_AUTOLOCK_TIME 0 // autolock time in minutes, 0 = disabled
29
13
#endif
30
 
uint8_t autolock_time = DEFAULT_AUTOLOCK_TIME;
31
14
uint8_t autolock_config_state(Event event, uint16_t arg);
32
15
#endif
33
16
 
34
 
 
35
 
#endif