Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Clang #63

Merged
merged 3 commits into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,16 @@
## System software requirements

For build are needed:
- cmake
- Clang
- CMake
- libusb 1.0
- Qt5
- pkg config
- udev

On Debian and derivatives:

`sudo apt-get install cmake libusb-1.0-0-dev qtbase5-dev pkg-config`
`sudo apt-get install cmake clang libusb-1.0-0-dev qtbase5-dev pkg-config`

On Debian >=13 and Ubuntu >=23.10:

Expand Down Expand Up @@ -158,7 +159,7 @@
- `Open` or `[Ctrl+O]` or ![open](IMSProg_editor/img/open.png) allows you to load the data file.
- `Save` or `[Ctrl+S]` or ![save](IMSProg_editor/img/save.png) saves the chip parameter table to a database file.
- `Exit` or `[Ctrl+X]` or ![exit](IMSProg_editor/img/exit.png) - exits the editor.
- `Export to CSV format` or `[Ctrl+X]` or ![export](IMSProg_editor/img/tocsv.png) allows to unload data about chips in CSV format for further processing by spreadsheet programme - Libre Office Calc, Open Office Calc, Google Tables, etc.
- `Export to CSV format` or `[Ctrl+X]` or ![export](IMSProg_editor/img/tocsv.png) allows to unload data about chips in CSV format for further processing by spreadsheet software - LibreOffice Calc, OpenOffice Calc, Google Tables, etc.
- `Import from CSV file` or `[Ctrl+Shift+X]` or ![import](IMSProg_editor/img/import.png) - loads a table in CSV format and adds data from it to the existing data in the table.

Menu `Edit`.
Expand Down Expand Up @@ -397,7 +398,7 @@

IMSProg.Dat file structure:

Chip string lenght: 0x44 (68) bytes;

Check failure on line 401 in README.md

View workflow job for this annotation

GitHub Actions / Check

lenght ==> length

```
offset Size Value
Expand All @@ -418,7 +419,7 @@
- 0x02 - 93xxx MicroWire
- 0x03 - 25xxx SPI EEPROM
- 0x04 - 95xxx ST SPI EEPROM
3B 1 Algoritm code number:

Check failure on line 422 in README.md

View workflow job for this annotation

GitHub Actions / Check

Algoritm ==> Algorithm
- SPI NOR Flash always 0x00
- i2C (24xxx) 0x?1 - address size 1 byte
- i2C (24xxx) 0x?2 - address size 2 bytes
Expand Down
Loading