Move all firmware files to subdirectory

This commit is contained in:
2023-05-21 15:06:44 +01:00
parent 3d8ec33cd3
commit 8c957d043a
46 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
#ifndef ALARMS_H
#define ALARMS_H
/**
* Intialize the alarms subsystem, loading any saved alarms from
* storage.
*/
void alarms_init(void);
/**
* Snooze the current alarm (if any).
*/
void alarm_snooze(void);
/**
* Dismiss the current alarm (if any).
*/
void alarm_dismiss(void);
#endif