Skip to content

Commit f2d0f34

Browse files
author
mehmet.aslan
committed
readme update
bugfix on config devStd linux build fixed
1 parent c4d4c84 commit f2d0f34

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,21 @@ For detailed usage instructions and advanced features, refer to the [Wiki page](
1616

1717
To use this tool, ensure the following dependencies are installed:
1818

19-
- **Qt Framework**: Required for the graphical user interface. Install the Qt5 version for your platform.
19+
- **Qt Framework**: Required for the graphical user interface. Install the Qt6 version for your platform.
2020
- **PEAK-System Drivers**: Necessary for communication with PEAK-System USB CAN interfaces. Download and install the drivers from the [PEAK-System website](https://www.peak-system.com/).
21-
- **Python 3**: Required for generating UDS (Unified Diagnostic Services) messages. Ensure Python 3 is installed and accessible in your system's PATH.
2221

2322
### Compilation
2423

25-
To compile the tool, navigate to the main directory and run the `build.sh` script:
26-
24+
#### Linux
2725
```bash
2826
./build.sh
2927
```
3028

29+
#### Windows
30+
```bash
31+
build.bat
32+
```
33+
3134
### Source Code Documentation
3235

3336
1. To properly view the system's architecture and documentation, use Doxygen to generate the documentation. Follow these steps:
@@ -37,4 +40,9 @@ doxygen doxyfile
3740
```
3841
2. Open the generated `index.html` file located in the `doc/output/html` directory in your web browser to explore the documentation.
3942

43+
### ChangeLog
44+
45+
#### v0.2.0 - 2025.06.23
46+
- Migration to Qt6
47+
- Support for Windows OS
4048

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cd "$thisDirPath" || ungracefulExit "Failed to change directory to $thisDirPath"
1717
rm -rf build
1818
mkdir -p build
1919
cd build || ungracefulExit "Failed to change gui build directory"
20-
qmake ../*.pro || ungracefulExit "Failed to run qmake for gui"
20+
qmake6 ../*.pro || ungracefulExit "Failed to run qmake for gui"
2121
make || ungracefulExit "Failed to build gui"
2222

2323
################################################################################

logic/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ ConfigStd::ConfigStd(QObject *parent):
314314
CmdDef::typeNames[CmdDef::Type::CanStdCfg],
315315
{
316316
#ifdef Q_OS_WIN32
317-
{ CmdDef::devFd.name , "1" },
317+
{ CmdDef::devStd.name , "1" },
318318
#else
319319
{ CmdDef::devStd.name, "/dev/pcanusb32" },
320320
#endif

0 commit comments

Comments
 (0)