mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-12-27 00:19:31 -05:00
18 lines
251 B
C
18 lines
251 B
C
/*
|
|
* Copyright (C) 2023 - Tillitis AB
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#ifndef STATE_H
|
|
#define STATE_H
|
|
|
|
enum state {
|
|
FW_STATE_INITIAL,
|
|
FW_STATE_LOADING,
|
|
FW_STATE_RUN,
|
|
FW_STATE_FAIL,
|
|
FW_STATE_LOAD_APP_FLASH,
|
|
FW_STATE_MAX,
|
|
};
|
|
#endif
|