From d89f7f09c6b6d9a90f010d3dff4a798f75d3c3db Mon Sep 17 00:00:00 2001 From: Jainan-Tandel <56350648+Jainan-Tandel@users.noreply.github.com> Date: Thu, 31 Oct 2019 13:00:28 +0530 Subject: [PATCH] Did necessary editing --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cedd81c..57a1a81 100644 --- a/README.md +++ b/README.md @@ -2,31 +2,31 @@ This is an i2c slave based on stm32. This implements a simple math calculator for doing addition, subtraction and multiplication of given two numbers. -## how to compile +## How to compile Modify `meson.build` according to your needs. `libocm3Path` - libopencm3 directory path -You need to issue `./build.sh` for once. +You need to issue `./build.sh` once. ```shell $ ./build.sh $ cd builddir ``` -ninja - generates elf file. +`ninja` - generates elf file. ```shell $ ninja ``` -ninja hex - generates hex file. +`ninja hex` - generates hex file. ```shell $ ninja hex ``` -ninja size - gives the summary of hex file size. +`ninja size` - gives the summary of hex file size. ```shell $ ninja size ``` -ninja upload - upload hex file to stm32 via stlink programmer. +`ninja upload` - upload hex file to stm32 via stlink programmer. ```shell $ ninja upload ```