mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-26 02:16:24 -05:00
This was announced on the Tillitis Blog the 2nd of October 2024, for more info visit https://tillitis.se
17 lines
292 B
C
17 lines
292 B
C
// Copyright (C) 2023 - Tillitis AB
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#ifndef STATE_H
|
|
#define STATE_H
|
|
|
|
enum state {
|
|
FW_STATE_INITIAL,
|
|
FW_STATE_WAITCOMMAND,
|
|
FW_STATE_LOADING,
|
|
FW_STATE_LOAD_FLASH,
|
|
FW_STATE_LOAD_FLASH_MGMT,
|
|
FW_STATE_START,
|
|
FW_STATE_FAIL,
|
|
FW_STATE_MAX,
|
|
};
|
|
#endif
|