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

Compare commits

...

10 Commits

Author SHA1 Message Date
FranziHH
235c861395
Merge 3da4cb0961 into 387ea019bd 2023-11-07 19:09:39 -08:00
FranziHH
3da4cb0961 update read.me 2023-10-23 19:21:03 +02:00
FranziHH
0bfc228d3c
Merge branch 'DCC-EX:master' into FranziHH_FastClock 2023-10-14 15:14:28 +02:00
FranziHH
9b17aaf53e
Merge branch 'DCC-EX:master' into FranziHH_FastClock 2023-10-02 13:07:29 +02:00
FranziHH
579931a885
Merge branch 'DCC-EX:master' into FranziHH_FastClock 2023-09-17 19:58:58 +02:00
FranziHH
7b5e2b41da new config options
For Display

Shows IP and Port in same Line: PRINT_IP_PORT_SINGLE_LINE

Shows FastClock readable: FASTCLOCK_READABLE
2023-09-03 16:09:26 +02:00
FranziHH
4bdc4b7079 Update IODevice.cpp
Debug Output adjusted
2023-09-01 13:56:02 +02:00
FranziHH
5fde819fa2
Merge branch 'DCC-EX:master' into master_FranziHH 2023-08-31 10:13:31 +02:00
FranziHH
b8d1c682ea FastClock is working for Me
Fast Clock can be easily activated without complicated adjustments in config.h:

Serial:
simply comment out the required port: e.g. #define SERIAL1_COMMANDS

OR

for I2C
//#define FAST_CLOCK_I2C 0x55
and define the address
2023-08-31 10:08:23 +02:00
FranziHH
fb8cca8d35 FastClock BUG
serial is working
I2C is wrong
First, the initialization was incorrect. The FastClock was initialized before the I2C Manager was initialized
Second: FastClock Functions are missing
2023-08-30 21:02:37 +02:00
8 changed files with 65 additions and 10 deletions

View File

@ -181,7 +181,20 @@ void CommandDistributor::setClockTime(int16_t clocktime, int8_t clockrate, byte
case 1:
if (clocktime != lastclocktime){
// CAH. DIAG removed because LCD does it anyway.
LCD(6,F("Clk Time:%d Sp %d"), clocktime, clockrate);
#ifndef FASTCLOCK_READABLE
LCD(6,F("Clk Time: %d Sp %d"), clocktime, clockrate);
#else
// Make Time readable
int hours = clocktime / 60;
int minutes = clocktime - (hours * 60);
int hoursH = hours / 10;
int hoursL = hours - (hoursH * 10);
int minutesH = minutes / 10;
int minutesL = minutes - (minutesH * 10);
LCD(6,F("Clk Time: %d%d:%d%d Sp %d"), hoursH, hoursL, minutesH, minutesL, clockrate);
#endif
// look for an event for this time
RMFT2::clockEvent(clocktime,1);
// Now tell everyone else what the time is.

View File

@ -48,6 +48,10 @@
static const FSH * guessI2CDeviceType(uint8_t address) {
if (address >= 0x20 && address <= 0x26)
return F("GPIO Expander");
#ifdef FAST_CLOCK_I2C
else if (address == FAST_CLOCK_I2C)
return F("Fast Clock");
#endif
else if (address == 0x27)
return F("GPIO Expander or LCD Display");
else if (address == 0x29)

View File

@ -27,6 +27,12 @@
#include "IO_MCP23017.h"
#include "DCCTimer.h"
#if !defined(IO_NO_HAL)
#ifdef FAST_CLOCK_I2C
#include "IO_EXFastClock.h" // FastClock driver
#endif
#endif
#if defined(ARDUINO_ARCH_AVR) || defined(ARDUINO_ARCH_MEGAAVR)
#define USE_FAST_IO
#endif
@ -76,6 +82,11 @@ void IODevice::begin() {
DIAG(F("Default PCA9685 at I2C 0x41 disabled due to configured user device"));
}
#ifdef FAST_CLOCK_I2C
DIAG(F("EXFastClock::create"));
EXFastClock::create(FAST_CLOCK_I2C);
#endif
// Predefine two MCP23017 module 0x20/0x21 if no conflicts
// Allocates 32 pins 164-195
if (checkNoOverlap(164, 16, 0x20)) {
@ -582,4 +593,3 @@ bool ArduinoPins::fastReadDigital(uint8_t pin) {
#endif
return result;
}

View File

@ -56,12 +56,12 @@ static void create(I2CAddress i2cAddress) {
// XXXX change thistosave2 bytes
if (_checkforclock == 0) {
FAST_CLOCK_EXISTS = true;
//DIAG(F("I2C Fast Clock found at %s"), i2cAddress.toString());
DIAG(F("I2C Fast Clock found at %s"), i2cAddress.toString());
new EXFastClock(i2cAddress);
}
else {
FAST_CLOCK_EXISTS = false;
//DIAG(F("No Fast Clock found"));
DIAG(F("No Fast Clock found"));
LCD(6,F("CLOCK NOT FOUND"));
}
@ -95,7 +95,8 @@ void _loop(unsigned long currentMicros) override{
if (FAST_CLOCK_EXISTS==true) {
uint8_t readBuffer[3];
byte a,b;
#ifdef EXRAIL_ACTIVE
// I would like to use the FastClock without EXRAIL
// #ifdef EXRAIL_ACTIVE
I2CManager.read(_I2CAddress, readBuffer, 3);
// XXXX change this to save a few bytes
a = readBuffer[0];
@ -110,7 +111,7 @@ void _loop(unsigned long currentMicros) override{
// Clock interval is 60/ clockspeed i.e 60/b seconds
delayUntil(currentMicros + ((60/b) * 1000000));
#endif
// #endif
}
}

View File

@ -1,3 +1,7 @@
# My (FranziHH) DCC++ Ex Hardware
<img src="/images/IMG_5870_1.jpg" height="400px" title="DCC++ Ex Hardware">
# What is DCC++ EX?
DCC++ EX is the organization maintaining several codebases that together represent a fully open source DCC system. Currently, this includes the following:

View File

@ -363,11 +363,17 @@ wifiSerialState WifiInterface::setup2(const FSH* SSid, const FSH* password,
}
ipString[ipLen]=ipChar;
}
#ifndef PRINT_IP_PORT_SINGLE_LINE
LCD(4,F("%s"),ipString); // There is not enough room on some LCDs to put a title to this
#else
LCD(4,F("%s:%d"),ipString,port); // *** Single IP:Port
#endif
}
// suck up anything after the IP.
if (!checkForOK(1000, true, false)) return WIFI_DISCONNECTED;
#ifndef PRINT_IP_PORT_SINGLE_LINE
LCD(5,F("PORT=%d"),port);
#endif
return WIFI_CONNECTED;
}

View File

@ -167,6 +167,9 @@ The configuration file for DCC-EX Command Station
// * #define SCROLLMODE 2 is by row (move up 1 row at a time).
#define SCROLLMODE 1
// Shows IP and Port on Display in a single line
// #define PRINT_IP_PORT_SINGLE_LINE
/////////////////////////////////////////////////////////////////////////////////////
// DISABLE EEPROM
//
@ -239,7 +242,10 @@ The configuration file for DCC-EX Command Station
// SAMD/SAMC and STM32 have up to 6.)
// To monitor a throttle on one or more serial ports, uncomment the defines below.
// NOTE: do not define here the WiFi shield serial port or your wifi will not work.
//
// -------------------------------------
// For Use with FastClock serial: uncomment the needed serial Port and
// FastClock will work, no further actions are needed
// -------------------------------------
//#define SERIAL1_COMMANDS
//#define SERIAL2_COMMANDS
//#define SERIAL3_COMMANDS
@ -247,6 +253,17 @@ The configuration file for DCC-EX Command Station
//#define SERIAL5_COMMANDS
//#define SERIAL6_COMMANDS
//
// -------------------------------------
// FastClock with I2C
// uncomment the following Line and Set the used I2C Address
//#define FAST_CLOCK_I2C 0x55 // default is 0x55
// -------------------------------------
//
// -------------------------------------
// FastClock in HH:MM on Display
//#define FASTCLOCK_READABLE
// -------------------------------------
//
// BLUETOOTH SERIAL ON ESP32
// On ESP32 you have the possibility to use the builtin BT serial to connect to
// the CS.

BIN
images/IMG_5870_1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 KiB