Move plugins to external folder

This commit is contained in:
MX
2023-03-14 20:00:53 +03:00
parent dd99c22792
commit 8b8b78d001
671 changed files with 1 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
/* https://github.com/openocd-org/openocd/blob/master/src/helper/ */
// SPDX-License-Identifier: GPL-2.0-or-later
/***************************************************************************
* Copyright (C) 2015 Andreas Fritiofson *
* andreas.fritiofson@gmail.com *
***************************************************************************/
#include "jep106.h"
static const char* const jep106[][126] = {
#include "jep106.inc"
};
const char* jep106_table_manufacturer(unsigned int bank, unsigned int id) {
if(id < 1 || id > 126) {
return "<invalid>";
}
/* index is zero based */
id--;
if(bank >= 14 || jep106[bank][id] == 0) return "<unknown>";
return jep106[bank][id];
}