From 95385189520bbc85e34a02b16d298b9ac1e6c915 Mon Sep 17 00:00:00 2001 From: niwciu <57457942+niwciu@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:01:10 +0100 Subject: [PATCH] ReadMe: update --- ReadMe.md | 50 +++++++++++++++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 59bbd74..188d534 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -110,27 +110,33 @@ Library main header file with available library api. ``` 3. Enter to LCD_HD44780/hw/STM32G071RB/ ```bash - cd .\LCD_HD44780\hw\STM32G071RB\ + cd ./LCD_HD44780/hw/STM32G071RB ``` 4. For make type: - ```bash - cmake -S ./ -B Debug -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug - ``` - ```bash - make -C Debug all - ``` - ```bash - make -C Debug flash - ``` + ```bash + cmake -S ./ -B Debug -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug + ``` + ```bash + cd Debug + ``` + ```bash + make all + ``` + ```bash + make flash + ``` 5. For Ninja type: ```bash cmake -S ./ -B Debug -G"Ninja" -DCMAKE_BUILD_TYPE=Debug ``` ```bash - ninja -C Debug + cd Debug + ``` + ```bash + ninja ``` ```bash - ninja -C Debug flash + ninja flash ``` ### STM32G474 @@ -149,29 +155,35 @@ Library main header file with available library api. ```bash git clone https://github.com/niwciu/LCD_HD44780.git ``` - 3. Enter to LCD_HD44780/hw/STM32G071RB/ + 3. Enter to LCD_HD44780/hw/STM32G474RB/ ```bash - cd .\LCD_HD44780\hw\STM32G071RB\ + cd ./LCD_HD44780/hw/STM32G474RB ``` 4. For make type: ```bash cmake -S ./ -B Debug -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ``` + ```bash + cd Debug + ``` ```bash - make -C Debug all + make all ``` ```bash - make -C Debug flash + make flash ``` 5. For Ninja type: ```bash cmake -S ./ -B Debug -G"Ninja" -DCMAKE_BUILD_TYPE=Debug ``` ```bash - ninja -C Debug + cd Debug + ``` + ```bash + ninja ``` ```bash - ninja -C Debug flash + ninja flash ``` ### AVR ATmega 328P @@ -191,7 +203,7 @@ Library main header file with available library api. ```bash git clone https://github.com/niwciu/LCD_HD44780.git ``` - 3. Enter to LCD_HD44780\hw\ATMEGA328P_ARDUINO_UNO_R3 folder + 3. Enter to LCD_HD44780/hw/ATMEGA328P_ARDUINO_UNO_R3 folder ```bash cd ./LCD_HD44780/hw/ATMEGA328P_ARDUINO_UNO_R3 ```