You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.8 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2015 Andreas Fritiofson *
  3. * andreas.fritiofson@gmail.com *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  17. ***************************************************************************/
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "jep106.h"
  22. #include "log.h"
  23. static const char * const jep106[][126] = {
  24. #include "jep106.inc"
  25. };
  26. const char *jep106_table_manufacturer(unsigned int bank, unsigned int id)
  27. {
  28. if (id < 1 || id > 126) {
  29. LOG_DEBUG("BUG: Caller passed out-of-range JEP106 ID!");
  30. return "<invalid>";
  31. }
  32. /* index is zero based */
  33. id--;
  34. if (bank >= ARRAY_SIZE(jep106) || jep106[bank][id] == 0)
  35. return "<unknown>";
  36. return jep106[bank][id];
  37. }