Skip to content

Commit 91fb3ab

Browse files
committed
Add HDR26 pin number option to dbnames
1 parent a4ae5f2 commit 91fb3ab

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

hostmot2.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ static bob_pin_name_t bob_pin_names[MAX_BOB_NAMES] = {
281281
{BOB_BENEZAN, {"Spindle/PWM/Relay1","Relay2","X-Dir","4th-Axis-Limit","X-Step","WD/Current-Reduce","Y-Dir",
282282
"PWM/Current-Reduce","Y-Step","Z-Dir","Z-Step","4th-Axis-Dir","4th-axis-Step","Z-Limit","EStop","Y-Limit","X-Limit"}},
283283

284+
{BOB_HDR26, {"1","2","3","4","5","6","7","8",
285+
"9","11","13","15","17","19","21","23","25"}},
286+
284287
};
285288

286289
static struct {
@@ -328,6 +331,7 @@ static struct {
328331
{ BOB_MX4660_2, "MX4660-2"},
329332
{ BOB_7I75, "7I75" },
330333
{ BOB_BENEZAN, "BENEZAN" },
334+
{ BOB_HDR26, "HDR26" },
331335

332336
{ -1, NULL },
333337
};

hostmot2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ typedef struct {
3737
} sserial_device_t;
3838

3939
#define HM2_MAX_TAGS 255
40-
#define MAX_BOB_NAMES 41
40+
#define MAX_BOB_NAMES 42
4141
#define ANYIO_MAX_IOPORT_CONNECTORS 8
4242

4343
typedef struct llio_struct llio_t;

hostmot2_def.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ typedef struct {
325325
# define BOB_MX4660_2 39
326326
# define BOB_7I75 40
327327
# define BOB_BENEZAN 41
328+
# define BOB_HDR26 42
328329

329330

330331

mesaflash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#endif
3333

3434
#ifndef VERSION
35-
#define VERSION "3.5.10"
35+
#define VERSION "3.5.11"
3636
#endif
3737

3838
static int device_flag;

0 commit comments

Comments
 (0)