Skip to content

Commit abbca8d

Browse files
No functional changes, just add awareness of other boards and options. Update to Version 0.93.70
1 parent 470e9ae commit abbca8d

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

OpenPanzerTCB/src/OP_Devices/OP_Devices.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#define DEVICE_ATMEGA328 7
1919
#define DEVICE_TEENSY32 8
2020
#define DEVICE_AT_MKI 9
21+
#define DEVICE_HECLO_SHIELD 10
22+
#define DEVICE_ATMEGA2560 11
2123

2224

2325
#endif

OpenPanzerTCB/src/OP_Motors/OP_Motors.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const __FlashStringHelper *ptrDriveType(Drive_t dType) {
4141
F("Pan Servo"),
4242
F("Recoil Servo"),
4343
F("Detached/NA"),
44+
F("Onboard Motor Drivers C & D"),
4445
F("Unknown")};
4546
return Names[dType];
4647
};

OpenPanzerTCB/src/OP_Motors/OP_Motors.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,14 @@ typedef char Drive_t;
7070
#define POLOLU 8
7171
#define SABERTOOTH 9
7272
#define OP_SCOUT 10
73-
#define ONBOARD 11
73+
#define ONBOARD 11 // Onboard motor drivers A & B
7474
#define SERVO_ESC 12
7575
#define SERVO_PAN 13
7676
#define SERVO_RECOIL 14
7777
#define DRIVE_DETACHED 15
78+
#define ONBOARD_CD 16 // Onboard motor drivers C & D - for the Heclo shield only
7879
//#define ADDITIONAL (number)
79-
#define LAST_DRIVE_TYPE DRIVE_DETACHED
80+
#define LAST_DRIVE_TYPE ONBOARD_CD
8081
const __FlashStringHelper *ptrDriveType(Drive_t dType); //Returns a character string that is name of drive type (see OP_Motors.cpp)
8182

8283

OpenPanzerTCB/src/OP_Settings/OP_Settings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
// OPEN PANZER TANK CONTROL BOARD (TCB) - FIRMWARE VERSION NUMBER
1818
// ------------------------------------------------------------------------------------------------------------------------------------------------------->>
1919
// This is the firmware version that will be returned to the desktop application when it checks. It will be split into three, two-digit numbers
20-
#define FIRMWARE_VERSION "0.93.68" // version. Last update 1/26/2020
20+
#define FIRMWARE_VERSION "0.93.70" // version. Last update 9/01/2020
2121

22-
#define MIN_OPCONFIG_VERSION "0.93.68" // Minimum version of OP Config this version of firmware requires
22+
#define MIN_OPCONFIG_VERSION "0.93.70" // Minimum version of OP Config this version of firmware requires
2323

2424

2525
// ------------------------------------------------------------------------------------------------------------------------------------------------------->>

0 commit comments

Comments
 (0)