You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
# Bare Arduino Project
4
4
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
+
5
12
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
6
13
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
7
14
**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...
32
39
- tests in `test`
33
40
- binaries in `bin`
34
41
- 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`?
36
43
-**use** an awesome [`Makefile`](https://github.com/sudar/Arduino-Makefile) to compile and upload your code from the `cli`?
37
44
38
45
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
43
50
44
51
- move away from the Arduino IDE and use your favorite text editor such as Vim or SublimeText
45
52
- 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
48
55
- 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)
49
56
- use our [Travis-CI](https://travis-ci.org) continuous integration configuration and adapt it to suit your needs
50
57
@@ -66,7 +73,9 @@ Because we are so awesome, we also provide your with 2 famous text editors confi
66
73
67
74
### Sublime Text - SublimeClang
68
75
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!~~ :)
70
79
71
80
As [quarnster](https://github.com/quarnster/) puts it:
0 commit comments