Skip to content

Commit 78d551d

Browse files
committed
Merge branch 'release/v1.8.2'
2 parents 33b9476 + 9cf1bd9 commit 78d551d

File tree

151 files changed

+368
-353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+368
-353
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.pyc
2+
.piolibdeps

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "examples/arduino-external-libs/lib/OneWire"]
2-
path = examples/arduino-external-libs/lib/OneWire
3-
url = https://github.com/PaulStoffregen/OneWire.git

README.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,27 @@ Atmel AVR 8- and 32-bit MCUs deliver a unique combination of performance, power
99

1010
# Usage
1111

12-
1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html)
13-
2. Install Atmel AVR development platform:
14-
```bash
15-
# install the latest stable version
16-
> platformio platform install atmelavr
17-
18-
# install development version
19-
> platformio platform install https://github.com/platformio/platform-atmelavr.git
12+
1. [Install PlatformIO](http://platformio.org)
13+
2. Create PlatformIO project and configure a platform option in [platformio.ini](http://docs.platformio.org/page/projectconf.html) file:
14+
15+
## Stable version
16+
17+
```ini
18+
[env:stable]
19+
platform = atmelavr
20+
board = ...
21+
...
2022
```
23+
24+
## Development version
25+
26+
```ini
27+
[env:development]
28+
platform = https://github.com/platformio/platform-atmelavr.git
29+
board = ...
30+
...
31+
```
32+
33+
# Configuration
34+
35+
Please navigate to [documentation](http://docs.platformio.org/page/platforms/atmelavr.html).

boards/1284p16m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_PLUS",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_PLUS",
55
"f_cpu": "16000000L",
66
"mcu": "atmega1284p",
77
"variant": "plus"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core%2B",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/1284p8m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_PLUS",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_PLUS",
55
"f_cpu": "8000000L",
66
"mcu": "atmega1284p",
77
"variant": "plus"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core%2B",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/168pa16m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
55
"f_cpu": "16000000L",
66
"mcu": "atmega168p",
77
"variant": "standard"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/168pa8m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
55
"f_cpu": "8000000L",
66
"mcu": "atmega168p",
77
"variant": "standard"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/328p16m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
55
"f_cpu": "16000000L",
66
"mcu": "atmega328p",
77
"variant": "standard"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/328p8m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE",
55
"f_cpu": "8000000L",
66
"mcu": "atmega328p",
77
"variant": "standard"
@@ -19,4 +19,4 @@
1919
},
2020
"url": "http://wiki.microduinoinc.com/Microduino-Module_Core",
2121
"vendor": "Microduino"
22-
}
22+
}

boards/32u416m.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
3-
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_USB",
43
"core": "arduino",
4+
"extra_flags": "-DARDUINO_AVR_MICRODUINO_CORE_USB",
55
"f_cpu": "16000000L",
66
"hwids": [
77
[
@@ -28,4 +28,4 @@
2828
},
2929
"url": "http://wiki.microduinoinc.com/Microduino-Module_CoreUSB",
3030
"vendor": "Microduino"
31-
}
31+
}

0 commit comments

Comments
 (0)