Skip to content

Commit

Permalink
Update coumentation
Browse files Browse the repository at this point in the history
Changed Watchdog timeout to 5s
  • Loading branch information
alexmucde committed Jul 9, 2021
1 parent c093994 commit d9cce7b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,15 @@ To build this SW the Qt Toolchain must be used.

## Usage

DLTRelais.exe
* DLTRelais.exe [options] configuration

* Options:
* -?, -h, --help Help
* -v, --version Version
* -a Autostart Communication

* Arguments:
* configuration Configuration file

## Contributing

Expand Down Expand Up @@ -97,6 +105,7 @@ v0.0.3:
* Changed communication protocol with Arduino board
* Added Watchdog
* Fixed startup problem with Arduino Flash Mode
* Added command line options autoload and configuration file

## Copyright

Expand Down
2 changes: 1 addition & 1 deletion dltrelais.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void DLTRelais::start()

// connect slot watchdog timer and start watchdog timer
connect(&timer, SIGNAL(timeout()), this, SLOT(timeout()));
timer.start(3000);
timer.start(5000);
watchDogCounter = 0;
watchDogCounterLast = 0;
}
Expand Down

0 comments on commit d9cce7b

Please sign in to comment.