1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-02-18 15:06:03 +01:00

duinoNodes support

This commit is contained in:
Asbelos 2022-12-26 11:06:42 +00:00
parent 0be25f6e7f
commit b1bd28273d
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,8 @@
/* /*
* © 2022, Chris Harlow. All rights reserved. * © 2022, Chris Harlow. All rights reserved.
* Based on original by: Robin Simonds, Beagle Bay Inc
* *
* This file is part of DCC++EX API * This file is part of DCC-EX API
* *
* This is free software: you can redistribute it and/or modify * This is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -101,7 +102,7 @@ void _loopOutput() {
ArduinoPins::fastWriteDigital(_clockPin,HIGH); ArduinoPins::fastWriteDigital(_clockPin,HIGH);
ArduinoPins::fastWriteDigital(_clockPin,LOW); ArduinoPins::fastWriteDigital(_clockPin,LOW);
} }
digitalWrite(_latchPin, HIGH); ArduinoPins::fastWriteDigital(_latchPin, HIGH);
} }
int _read(VPIN vpin) override { int _read(VPIN vpin) override {

View File

@ -4,7 +4,8 @@
#include "StringFormatter.h" #include "StringFormatter.h"
#define VERSION "4.2.8pre1" #define VERSION "4.2.9pre1"
// 4.2.9 duinoNodes support
// 4.2.8 HIGHMEM (EXRAIL support beyond 64kb) // 4.2.8 HIGHMEM (EXRAIL support beyond 64kb)
// Withrottle connect/disconnect improvements // Withrottle connect/disconnect improvements
// Report BOARD_TYPE if provided by compiler // Report BOARD_TYPE if provided by compiler