Skip to content

Commit dfe81b8

Browse files
committed
update readme and install
1 parent 1a180b4 commit dfe81b8

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ We've made a [Homebrew](http://brew.sh/) `formula` that you can `tap` like [*dat
7474

7575
```Bash
7676
$ brew tap osx-cross/avr
77-
$ brew install avr-libc
77+
$ brew install avr-gcc
7878
$ brew install avrdude
7979
```
8080

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
# Bare Arduino Project
44

5+
## Important notice
6+
7+
> I'm not using this project as much as I used to and might be slow at answering issues or PR's.
8+
> I am slowly moving out of Arduino-Makefile in favor of [PlatformIO](http://docs.platformio.org/en/latest/).
9+
> I've ported their basic toolchain so you can still use the latest avr-gcc toolchain and stuff.
10+
> Take a look here and let me know what you think: [osx-cross/platform-osxcrossavr](https://github.com/osx-cross/platform-osxcrossavr)
11+
512
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
613
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
714
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
@@ -32,7 +39,7 @@ Ever wanted to start a new [Arduino](http://arduino.cc/) project and...
3239
- tests in `test`
3340
- binaries in `bin`
3441
- etc.
35-
- **use** a newer version of `avr-gcc` such as `4.8.x` or `4.9.x`?
42+
- **use** a newer version of `avr-gcc` such as `7.2` or `6.4`?
3643
- **use** an awesome [`Makefile`](https://github.com/sudar/Arduino-Makefile) to compile and upload your code from the `cli`?
3744

3845
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! :)
@@ -43,8 +50,8 @@ Based on what we've learned on our [Moti project](http://github.com/weareleka/mo
4350

4451
- move away from the Arduino IDE and use your favorite text editor such as Vim or SublimeText
4552
- get up and running in less time
46-
- use `avr-gcc 4.8 or 4.9` to compile your code
47-
- use `C++11` for your standard coding
53+
- use `avr-gcc 7.2` to compile your code
54+
- use `C++14` for your standard coding
4855
- 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)
4956
- use our [Travis-CI](https://travis-ci.org) continuous integration configuration and adapt it to suit your needs
5057

@@ -66,7 +73,9 @@ Because we are so awesome, we also provide your with 2 famous text editors confi
6673

6774
### Sublime Text - SublimeClang
6875

69-
To code in C/C++, we highly recommend using [SublimeClang](https://github.com/quarnster/SublimeClang), even if the plugin is not maintained anymore. As far as we can tell, it works beautifully well and will save you a lot of time! :)
76+
*Note: I haven't used SublimeText for developping in C/C++ for years, so the following might not work as expected.*
77+
78+
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!~~ :)
7079

7180
As [quarnster](https://github.com/quarnster/) puts it:
7281

0 commit comments

Comments
 (0)