From 551fe2c03d874c6c3629f354b541c7fdb61b605e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Mon, 18 Feb 2019 17:08:27 -0300 Subject: [PATCH] Fixed typos on string #138 & 143 * plus minor formatting proposals --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2bec331909..38e7bd7722 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Install Cygwin with [setup-x86_64.exe](https://www.cygwin.com/setup-x86_64.exe). Download the latest `gcc-arm-none-eabi-*-win32.zip` archive from [launchpad.net](https://launchpad.net/gcc-arm-embedded/+download). Create the directory `C:\cygwin64\opt\gcc-arm-none-eabi` and extract the contents of the zip file to it. -Launch a Cygwin terminal and run the following to append to your ~/.bashrc file: +Launch a Cygwin terminal and run the following to append to your `~/.bashrc` file: ```bash echo '[[ $PATH == */opt/gcc-arm-none-eabi/bin* ]] || export PATH=/opt/gcc-arm-none-eabi/bin:$PATH' >>~/.bashrc source ~/.bashrc @@ -70,13 +70,13 @@ Verify the toolchain installation with `arm-none-eabi-gcc --version` ### Cloning -This repository uses git submodules. Clone with the --recursive flag +This repository uses git submodules. Clone with the `--recursive` flag ```bash git clone --recursive https://github.com/bitcraze/crazyflie-firmware.git ``` -If you already have cloned the repo without the --recursive option, you need to +If you already have cloned the repo without the `--recursive` option, you need to get the submodules manually ```bash @@ -117,7 +117,7 @@ tb make PLATFORM=tag ### config.mk -To create custom build options create a file called config.mk in the tools/make/ +To create custom build options create a file called `config.mk` in the `tools/make/` folder and fill it with options. E.g. ``` PLATFORM=CF2 @@ -135,12 +135,12 @@ More information can be found on the + drivers | Hardware driver layer | + src | Drivers source code | + interface | Drivers header files. Interface to the HAL layer - + hal | Hardware abstaction layer + + hal | Hardware abstraction layer | + src | HAL source code | + interface | HAL header files. Interface with the other parts of the program + modules | Firmware operating code and headers | + src | Firmware tasks source code and main.c - | + interface | Operating headers. Configure the firmware environement + | + interface | Operating headers. Configure the firmware environment + utils | Utils code. Implement utility block like the console. | + src | Utils source code | + interface | Utils header files. Interface with the other parts of the program