From b6e93d5a5b93cfd3d19f89866b96e01d7bfd959b Mon Sep 17 00:00:00 2001 From: Patrick Murphy Date: Thu, 27 May 2021 15:20:31 -0500 Subject: initial support for mtac-003 mtac card --- mtac.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mtac.h') diff --git a/mtac.h b/mtac.h index 1a84884..6b4cae2 100644 --- a/mtac.h +++ b/mtac.h @@ -30,6 +30,7 @@ #define HW_VERSION_MTAC_LORA_1_0 "MTAC-LORA-1.0" #define HW_VERSION_MTAC_LORA_1_1 "MTAC-LORA-1.1" #define HW_VERSION_MTAC_LORA_1_5 "MTAC-LORA-1.5" +#define HW_VERSION_MTAC_003_0_0 "MTAC-003-0.0" /* Code assumes CRESET/CDONE (SPI programming) cases will not * exactly match MTAC-LORA-0.0, 1.0, or 1.1. Also levels before * 1.5 must be the same length. @@ -46,6 +47,7 @@ enum { MTAC_LORA_1_0, MTAC_LORA_1_1, MTAC_LORA_1_5, + MTAC_003_0_0, MTAC_PULSE_1_0, MTAC_XDOT_0_0, MTAC_LORA_2G4_0_0, -- cgit v1.2.3 From 1819db821fa002d1b63976762ce6d3e1f2ad2d66 Mon Sep 17 00:00:00 2001 From: Patrick Murphy Date: Tue, 1 Jun 2021 04:29:18 -0500 Subject: changed naming to reflect mtac-lora naming schema --- mtac.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mtac.h') diff --git a/mtac.h b/mtac.h index 6b4cae2..bb20d7b 100644 --- a/mtac.h +++ b/mtac.h @@ -30,7 +30,7 @@ #define HW_VERSION_MTAC_LORA_1_0 "MTAC-LORA-1.0" #define HW_VERSION_MTAC_LORA_1_1 "MTAC-LORA-1.1" #define HW_VERSION_MTAC_LORA_1_5 "MTAC-LORA-1.5" -#define HW_VERSION_MTAC_003_0_0 "MTAC-003-0.0" +#define HW_VERSION_MTAC_LORA_003_0_0 "MTAC-LORA-003-0.0" /* Code assumes CRESET/CDONE (SPI programming) cases will not * exactly match MTAC-LORA-0.0, 1.0, or 1.1. Also levels before * 1.5 must be the same length. @@ -47,7 +47,7 @@ enum { MTAC_LORA_1_0, MTAC_LORA_1_1, MTAC_LORA_1_5, - MTAC_003_0_0, + MTAC_LORA_003_0_0, MTAC_PULSE_1_0, MTAC_XDOT_0_0, MTAC_LORA_2G4_0_0, -- cgit v1.2.3 From 8fc0259768422247557ff677ff6517faa9aac5a8 Mon Sep 17 00:00:00 2001 From: Harsh Sharma Date: Tue, 1 Jun 2021 14:43:39 -0500 Subject: Changed mtac 003 naming structure --- mtac.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mtac.h') diff --git a/mtac.h b/mtac.h index bb20d7b..2e36119 100644 --- a/mtac.h +++ b/mtac.h @@ -19,6 +19,7 @@ #define PRODUCT_ID_MTAC_MFSER "MTAC-MFSER" #define PRODUCT_ID_MTAC_ETH "MTAC-ETH" #define PRODUCT_ID_MTAC_LORA "MTAC-LORA" +#define PRODUCT_ID_MTAC_LORA_003 "MTAC-003" #define PRODUCT_ID_MTAC_PULSE "MTAC-PULSE" #define PRODUCT_ID_MTAC_XDOT "MTAC-XDOT" @@ -30,7 +31,8 @@ #define HW_VERSION_MTAC_LORA_1_0 "MTAC-LORA-1.0" #define HW_VERSION_MTAC_LORA_1_1 "MTAC-LORA-1.1" #define HW_VERSION_MTAC_LORA_1_5 "MTAC-LORA-1.5" -#define HW_VERSION_MTAC_LORA_003_0_0 "MTAC-LORA-003-0.0" +#define HW_VERSION_MTAC_LORA_003_0_0 "MTAC-003-0.0" +#define HW_VERSION_MTAC_LORA_003_0_1 "MTAC-003-0.1" /* Code assumes CRESET/CDONE (SPI programming) cases will not * exactly match MTAC-LORA-0.0, 1.0, or 1.1. Also levels before * 1.5 must be the same length. @@ -48,6 +50,7 @@ enum { MTAC_LORA_1_1, MTAC_LORA_1_5, MTAC_LORA_003_0_0, + MTAC_LORA_003_0_1, MTAC_PULSE_1_0, MTAC_XDOT_0_0, MTAC_LORA_2G4_0_0, -- cgit v1.2.3