2020-05-18 22:11:27 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
2021-05-12 23:38:34 +02:00
|
|
|
* Copyright (c) 2018-2021 CTCaer
|
2020-05-18 22:11:27 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HOS_H_
|
|
|
|
#define _HOS_H_
|
|
|
|
|
2021-08-28 23:28:29 +02:00
|
|
|
#define KEYBLOB_OFFSET 0x180000
|
|
|
|
|
2021-08-28 22:10:33 +02:00
|
|
|
#define KB_FIRMWARE_VERSION_100 0
|
|
|
|
#define KB_FIRMWARE_VERSION_300 1
|
|
|
|
#define KB_FIRMWARE_VERSION_301 2
|
|
|
|
#define KB_FIRMWARE_VERSION_400 3
|
|
|
|
#define KB_FIRMWARE_VERSION_500 4
|
|
|
|
#define KB_FIRMWARE_VERSION_600 5
|
|
|
|
#define KB_FIRMWARE_VERSION_620 6
|
|
|
|
#define KB_FIRMWARE_VERSION_700 7
|
|
|
|
#define KB_FIRMWARE_VERSION_810 8
|
|
|
|
#define KB_FIRMWARE_VERSION_900 9
|
|
|
|
#define KB_FIRMWARE_VERSION_910 10
|
2021-07-06 19:17:35 +02:00
|
|
|
#define KB_FIRMWARE_VERSION_1210 11
|
2021-09-16 01:15:12 +02:00
|
|
|
#define KB_FIRMWARE_VERSION_1300 12
|
2022-03-22 02:03:17 +01:00
|
|
|
#define KB_FIRMWARE_VERSION_1400 13
|
2022-10-12 00:02:39 +02:00
|
|
|
#define KB_FIRMWARE_VERSION_1500 14
|
2023-02-22 00:10:17 +01:00
|
|
|
#define KB_FIRMWARE_VERSION_1600 15
|
2023-10-11 10:42:32 +02:00
|
|
|
#define KB_FIRMWARE_VERSION_1700 16
|
|
|
|
#define KB_FIRMWARE_VERSION_MAX KB_FIRMWARE_VERSION_1700 //!TODO: Update on mkey changes.
|
2020-05-18 22:11:27 +02:00
|
|
|
|
|
|
|
#endif
|