1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 23:56:13 +01:00

startup Info on USB (#44)

Add status info to CS startup and ash Git SHA for version tracking
This commit is contained in:
Asbelos 2020-10-02 17:12:48 +01:00 committed by GitHub
parent 1b802cc600
commit 6feda4e217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,8 @@
#include "DCC.h"
#include "DCCWaveform.h"
#include "DIAG.h"
#include "GITHUB_SHA.h"
#include "version.h"
// This module is responsible for converting API calls into
@ -45,6 +47,7 @@ __FlashStringHelper* DCC::shieldName=NULL;
void DCC::begin(const __FlashStringHelper* motorShieldName, MotorDriver * mainDriver, MotorDriver* progDriver, byte timerNumber) {
shieldName=(__FlashStringHelper*)motorShieldName;
DIAG(F("<iDCC-EX V-%S / %S / %S G-%S>\n"), F(VERSION), F(ARDUINO_TYPE), shieldName, F(GITHUB_SHA));
DCCWaveform::begin(mainDriver,progDriver, timerNumber);
}