From 1c6f6a683d3c2ec6e7334f95de2ba0b87823de6a Mon Sep 17 00:00:00 2001 From: Peter Wallace Date: Mon, 23 Oct 2023 08:11:21 -0700 Subject: [PATCH] Add 7I75 daughtercard, bump version --- hostmot2.c | 5 +++++ hostmot2.h | 2 +- hostmot2_def.h | 1 + mesaflash.c | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/hostmot2.c b/hostmot2.c index 7883966..41bfaee 100644 --- a/hostmot2.c +++ b/hostmot2.c @@ -239,6 +239,9 @@ static bob_pin_name_t bob_pin_names[MAX_BOB_NAMES] = { {BOB_MX4660_2, {"Output6","NC","NC","NC","NC","NC","NC", "Output5","NC","NC","NC","Output3","Output4","Input5","Input6","Input7","Input8"}}, + {BOB_7I75, {"TB3-1","TB2-1","TB3-3","TB2-3","TB3-5","TB2-5","TB3-7","TB2-7","TB3-9","TB2-9", + "TB3-11","TB2-11","TB3-13","TB2-13","TB3-15","TB2-15","TB3-17"}}, + }; @@ -285,6 +288,8 @@ static struct { { BOB_MX3660, "MX3660"}, { BOB_MX4660_1, "MX4660-1"}, { BOB_MX4660_2, "MX4660-2"}, + { BOB_7I75, "7I75" }, + { -1, NULL }, }; diff --git a/hostmot2.h b/hostmot2.h index e1bc788..e24f36d 100644 --- a/hostmot2.h +++ b/hostmot2.h @@ -37,7 +37,7 @@ typedef struct { } sserial_device_t; #define HM2_MAX_TAGS 255 -#define MAX_BOB_NAMES 39 +#define MAX_BOB_NAMES 40 #define ANYIO_MAX_IOPORT_CONNECTORS 8 typedef struct llio_struct llio_t; diff --git a/hostmot2_def.h b/hostmot2_def.h index e86ab74..7174a37 100644 --- a/hostmot2_def.h +++ b/hostmot2_def.h @@ -323,6 +323,7 @@ typedef struct { # define BOB_MX3660 37 # define BOB_MX4660_1 38 # define BOB_MX4660_2 39 +# define BOB_7I75 40 diff --git a/mesaflash.c b/mesaflash.c index 737b6ee..d1e62a1 100644 --- a/mesaflash.c +++ b/mesaflash.c @@ -32,7 +32,7 @@ #endif #ifndef VERSION -#define VERSION "3.4.9" +#define VERSION "3.5" #endif static int device_flag;