Skip to content

Commit 4de367e

Browse files
committed
update readme and fix typos
1 parent 21636e1 commit 4de367e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,30 @@ Ever wanted to start a new [Arduino](http://arduino.cc/) project and...
3434
- tests in `test`
3535
- binaries in `bin`
3636
- etc.
37-
- **use** a newer version of `avr-gcc` such as `8.3.0`?
37+
- **use** a newer version of `avr-gcc` such as `9.2.0`?
3838
- **use** an awesome [`Makefile`](https://github.com/sudar/Arduino-Makefile) to compile and upload your code from the `cli`?
3939

4040
If you answered **yes** to one of the above, this [Bare Arduino Project](https://github.com/ladislas/bare-arduino-project) is just what you're looking for! :)
4141

4242
## What you get
4343

44-
Based on what we've learned on our [Moti project](http://github.com/weareleka/moti), this repo will allow you to:
44+
Based on what we've learned from our [Moti project](http://github.com/weareleka/moti), this repo will allow you to:
4545

4646
- move away from the Arduino IDE and use your favorite text editor such as Vim or SublimeText
4747
- get up and running in less time
48-
- use `avr-gcc 8.3.0` to compile your code
48+
- use the latest version of `avr-gcc 9.x.x` to compile your code
4949
- use `C++17` for your standard coding
5050
- use `make` to compile, `make upload` to upload, thanks to [Sudar](https://github.com/sudar/)'s incredible project [Arduino-Makefile](https://github.com/sudar/Arduino-Makefile)
51-
- use our [Travis-CI](https://travis-ci.org) continuous integration configuration and adapt it to suit your needs
5251

53-
To put it in a nuttshell, it allows you to **write Arduino code as you ever wanted !**
52+
To put it in a nutshell, it allows you to **write Arduino code the way you've always wanted!**
5453

5554
## How to install and use
5655

5756
The full procedure is detailed in [INSTALL.md](./INSTALL.md).
5857

5958
## Bugs
6059

61-
If you encounter some issues while using the [Bare-Arduino-Project](https://github.com/ladislas/bare-arduino-project), please first report the issue [here in this repo issue tracker](https://github.com/ladislas/bare-arduino-project/issues) and **not in Arduino-Makefile**.
60+
⚠️ If you encounter some issues while using the [Bare-Arduino-Project](https://github.com/ladislas/bare-arduino-project), please first report the issue [here in this repo issue tracker](https://github.com/ladislas/bare-arduino-project/issues) and **not in Arduino-Makefile**.
6261

6362
It will allow us to investigate first and not overflow the Arduino-Makefile issue tracker.
6463

@@ -68,7 +67,7 @@ Because we are so awesome, we also provide your with 2 famous text editors confi
6867

6968
### Sublime Text - SublimeClang
7069

71-
*Note: I haven't used SublimeText for developping in C/C++ for years, so the following might not work as expected.*
70+
⚠️ *Note: I haven't used SublimeText for developping in C/C++ for years, so the following might not work as expected.*
7271

7372
To code in C/C++, we highly recommend using [SublimeClang](https://github.com/boxdot/SublimeClang), ~~even if the plugin is not maintained anymore~~ (this fork seems to be up-to-date). ~~As far as we can tell, it works beautifully well and will save you a lot of time!~~ :)
7473

@@ -86,7 +85,7 @@ As [Valloric](https://github.com/Valloric) puts it:
8685

8786
> YouCompleteMe is a fast, as-you-type, fuzzy-search code completion engine for Vim. It has several completion engines: an identifier-based engine that works with every programming language, a semantic, Clang-based engine that provides native semantic code completion for C/C++/Objective-C/Objective-C++ (from now on referred to as "the C-family languages"), a Jedi-based completion engine for Python, an OmniSharp-based completion engine for C\# and an omnifunc-based completer that uses data from Vim's omnicomplete system to provide semantic completions for many other languages (Ruby, PHP etc.).
8887
89-
The [`.ycm_extra_conf.py`](./.ycm_extra_conf.py) file contains everything you need. It should work right out of the box on OS X and need very little modification on Linux!
88+
The [`.ycm_extra_conf.py`](./.ycm_extra_conf.py) file contains everything you need. It should work right out of the box on macOS and need very little modification on Linux!
9089

9190
### Bonus - `.editorconfig`
9291

0 commit comments

Comments
 (0)