/
githubmirror
/
flashrom
Обзор
Документация
Войти
/
githubmirror
/
flashrom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.2
edi.h
30 строк
878 B
Paul Kocialkowski
Add support for the ENE Embedded Debug Interface EDI and KB9012 EC
11 фев 2018, 19:53
11 фев 2018, 19:53
80ae14e
Код
Авторство
О чём код?
/* * This file is part of the flashrom project. * * Copyright (C) 2015 Paul Kocialkowski <contact@paulk.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that 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. */ #ifndef __EDI_H__ #define __EDI_H__ 1 #define EDI_READ 0x30 #define EDI_WRITE 0x40 #define EDI_DISABLE 0xf3 #define EDI_NOT_READY 0x5f #define EDI_READY 0x50 #define EDI_READ_BUFFER_LENGTH_DEFAULT 3 #define EDI_READ_BUFFER_LENGTH_MAX 32 #endif