Skip to content

Commit 920ac92

Browse files
committed
Sync dev-platforms
1 parent ebbd440 commit 920ac92

File tree

117 files changed

+4470
-69
lines changed

Some content is hidden

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

117 files changed

+4470
-69
lines changed

boards/asrmicro650x/cubecell_capsule_solar_sensor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Platform :ref:`platform_asrmicro650x`: ASR Microelectronics ASR650x series is hi
2424
.. list-table::
2525

2626
* - **Microcontroller**
27-
- ASR6502
27+
- ASR6051
2828
* - **Frequency**
2929
- 48MHz
3030
* - **Flash**
@@ -58,7 +58,7 @@ board manifest `cubecell_capsule_solar_sensor.json <https://github.com/HelTecAut
5858
board = cubecell_capsule_solar_sensor
5959
6060
; change microcontroller
61-
board_build.mcu = asr6502
61+
board_build.mcu = asr6051
6262
6363
; change MCU frequency
6464
board_build.f_cpu = 48000000L

boards/atmelmegaavr/ATtiny1624.rst

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.. Copyright (c) 2014-present PlatformIO <contact@platformio.org>
2+
Licensed under the Apache License, Version 2.0 (the "License");
3+
you may not use this file except in compliance with the License.
4+
You may obtain a copy of the License at
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
Unless required by applicable law or agreed to in writing, software
7+
distributed under the License is distributed on an "AS IS" BASIS,
8+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
See the License for the specific language governing permissions and
10+
limitations under the License.
11+
12+
.. _board_atmelmegaavr_ATtiny1624:
13+
14+
ATtiny1624
15+
==========
16+
17+
.. contents::
18+
19+
Hardware
20+
--------
21+
22+
Platform :ref:`platform_atmelmegaavr`: 8-bit MCUs Built for Real-time Control with Core Independent Peripherals combining intelligent hardware peripherals along with the low-power capability of an AVR core, megaAVR microcontrollers (MCUs) broaden the effectiveness of your real-time control systems.
23+
24+
.. list-table::
25+
26+
* - **Microcontroller**
27+
- ATTINY1624
28+
* - **Frequency**
29+
- 16MHz
30+
* - **Flash**
31+
- 16KB
32+
* - **RAM**
33+
- 2KB
34+
* - **Vendor**
35+
- `Microchip <https://www.microchip.com/wwwproducts/en/ATTINY1624?utm_source=platformio.org&utm_medium=docs>`__
36+
37+
38+
Configuration
39+
-------------
40+
41+
Please use ``ATtiny1624`` ID for :ref:`projectconf_env_board` option in :ref:`projectconf`:
42+
43+
.. code-block:: ini
44+
45+
[env:ATtiny1624]
46+
platform = atmelmegaavr
47+
board = ATtiny1624
48+
49+
You can override default ATtiny1624 settings per build environment using
50+
``board_***`` option, where ``***`` is a JSON object path from
51+
board manifest `ATtiny1624.json <https://github.com/platformio/platform-atmelmegaavr/blob/master/boards/ATtiny1624.json>`_. For example,
52+
``board_build.mcu``, ``board_build.f_cpu``, etc.
53+
54+
.. code-block:: ini
55+
56+
[env:ATtiny1624]
57+
platform = atmelmegaavr
58+
board = ATtiny1624
59+
60+
; change microcontroller
61+
board_build.mcu = attiny1624
62+
63+
; change MCU frequency
64+
board_build.f_cpu = 16000000L
65+
66+
Debugging
67+
---------
68+
:ref:`piodebug` currently does not support ATtiny1624 board.
69+
70+
Frameworks
71+
----------
72+
.. list-table::
73+
:header-rows: 1
74+
75+
* - Name
76+
- Description
77+
78+
* - :ref:`framework_arduino`
79+
- Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences

boards/atmelmegaavr/ATtiny1626.rst

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.. Copyright (c) 2014-present PlatformIO <contact@platformio.org>
2+
Licensed under the Apache License, Version 2.0 (the "License");
3+
you may not use this file except in compliance with the License.
4+
You may obtain a copy of the License at
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
Unless required by applicable law or agreed to in writing, software
7+
distributed under the License is distributed on an "AS IS" BASIS,
8+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
See the License for the specific language governing permissions and
10+
limitations under the License.
11+
12+
.. _board_atmelmegaavr_ATtiny1626:
13+
14+
ATtiny1626
15+
==========
16+
17+
.. contents::
18+
19+
Hardware
20+
--------
21+
22+
Platform :ref:`platform_atmelmegaavr`: 8-bit MCUs Built for Real-time Control with Core Independent Peripherals combining intelligent hardware peripherals along with the low-power capability of an AVR core, megaAVR microcontrollers (MCUs) broaden the effectiveness of your real-time control systems.
23+
24+
.. list-table::
25+
26+
* - **Microcontroller**
27+
- ATTINY1626
28+
* - **Frequency**
29+
- 16MHz
30+
* - **Flash**
31+
- 16KB
32+
* - **RAM**
33+
- 2KB
34+
* - **Vendor**
35+
- `Microchip <https://www.microchip.com/wwwproducts/en/ATTINY1626?utm_source=platformio.org&utm_medium=docs>`__
36+
37+
38+
Configuration
39+
-------------
40+
41+
Please use ``ATtiny1626`` ID for :ref:`projectconf_env_board` option in :ref:`projectconf`:
42+
43+
.. code-block:: ini
44+
45+
[env:ATtiny1626]
46+
platform = atmelmegaavr
47+
board = ATtiny1626
48+
49+
You can override default ATtiny1626 settings per build environment using
50+
``board_***`` option, where ``***`` is a JSON object path from
51+
board manifest `ATtiny1626.json <https://github.com/platformio/platform-atmelmegaavr/blob/master/boards/ATtiny1626.json>`_. For example,
52+
``board_build.mcu``, ``board_build.f_cpu``, etc.
53+
54+
.. code-block:: ini
55+
56+
[env:ATtiny1626]
57+
platform = atmelmegaavr
58+
board = ATtiny1626
59+
60+
; change microcontroller
61+
board_build.mcu = attiny1626
62+
63+
; change MCU frequency
64+
board_build.f_cpu = 16000000L
65+
66+
Debugging
67+
---------
68+
:ref:`piodebug` currently does not support ATtiny1626 board.
69+
70+
Frameworks
71+
----------
72+
.. list-table::
73+
:header-rows: 1
74+
75+
* - Name
76+
- Description
77+
78+
* - :ref:`framework_arduino`
79+
- Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences

boards/atmelmegaavr/ATtiny1627.rst

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.. Copyright (c) 2014-present PlatformIO <contact@platformio.org>
2+
Licensed under the Apache License, Version 2.0 (the "License");
3+
you may not use this file except in compliance with the License.
4+
You may obtain a copy of the License at
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
Unless required by applicable law or agreed to in writing, software
7+
distributed under the License is distributed on an "AS IS" BASIS,
8+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
See the License for the specific language governing permissions and
10+
limitations under the License.
11+
12+
.. _board_atmelmegaavr_ATtiny1627:
13+
14+
ATtiny1627
15+
==========
16+
17+
.. contents::
18+
19+
Hardware
20+
--------
21+
22+
Platform :ref:`platform_atmelmegaavr`: 8-bit MCUs Built for Real-time Control with Core Independent Peripherals combining intelligent hardware peripherals along with the low-power capability of an AVR core, megaAVR microcontrollers (MCUs) broaden the effectiveness of your real-time control systems.
23+
24+
.. list-table::
25+
26+
* - **Microcontroller**
27+
- ATTINY1627
28+
* - **Frequency**
29+
- 16MHz
30+
* - **Flash**
31+
- 16KB
32+
* - **RAM**
33+
- 2KB
34+
* - **Vendor**
35+
- `Microchip <https://www.microchip.com/wwwproducts/en/ATTINY1627?utm_source=platformio.org&utm_medium=docs>`__
36+
37+
38+
Configuration
39+
-------------
40+
41+
Please use ``ATtiny1627`` ID for :ref:`projectconf_env_board` option in :ref:`projectconf`:
42+
43+
.. code-block:: ini
44+
45+
[env:ATtiny1627]
46+
platform = atmelmegaavr
47+
board = ATtiny1627
48+
49+
You can override default ATtiny1627 settings per build environment using
50+
``board_***`` option, where ``***`` is a JSON object path from
51+
board manifest `ATtiny1627.json <https://github.com/platformio/platform-atmelmegaavr/blob/master/boards/ATtiny1627.json>`_. For example,
52+
``board_build.mcu``, ``board_build.f_cpu``, etc.
53+
54+
.. code-block:: ini
55+
56+
[env:ATtiny1627]
57+
platform = atmelmegaavr
58+
board = ATtiny1627
59+
60+
; change microcontroller
61+
board_build.mcu = attiny1627
62+
63+
; change MCU frequency
64+
board_build.f_cpu = 16000000L
65+
66+
Debugging
67+
---------
68+
:ref:`piodebug` currently does not support ATtiny1627 board.
69+
70+
Frameworks
71+
----------
72+
.. list-table::
73+
:header-rows: 1
74+
75+
* - Name
76+
- Description
77+
78+
* - :ref:`framework_arduino`
79+
- Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences

boards/atmelmegaavr/ATtiny3224.rst

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.. Copyright (c) 2014-present PlatformIO <contact@platformio.org>
2+
Licensed under the Apache License, Version 2.0 (the "License");
3+
you may not use this file except in compliance with the License.
4+
You may obtain a copy of the License at
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
Unless required by applicable law or agreed to in writing, software
7+
distributed under the License is distributed on an "AS IS" BASIS,
8+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
See the License for the specific language governing permissions and
10+
limitations under the License.
11+
12+
.. _board_atmelmegaavr_ATtiny3224:
13+
14+
ATtiny3224
15+
==========
16+
17+
.. contents::
18+
19+
Hardware
20+
--------
21+
22+
Platform :ref:`platform_atmelmegaavr`: 8-bit MCUs Built for Real-time Control with Core Independent Peripherals combining intelligent hardware peripherals along with the low-power capability of an AVR core, megaAVR microcontrollers (MCUs) broaden the effectiveness of your real-time control systems.
23+
24+
.. list-table::
25+
26+
* - **Microcontroller**
27+
- ATTINY3224
28+
* - **Frequency**
29+
- 16MHz
30+
* - **Flash**
31+
- 32KB
32+
* - **RAM**
33+
- 3KB
34+
* - **Vendor**
35+
- `Microchip <https://www.microchip.com/wwwproducts/en/ATTINY3224?utm_source=platformio.org&utm_medium=docs>`__
36+
37+
38+
Configuration
39+
-------------
40+
41+
Please use ``ATtiny3224`` ID for :ref:`projectconf_env_board` option in :ref:`projectconf`:
42+
43+
.. code-block:: ini
44+
45+
[env:ATtiny3224]
46+
platform = atmelmegaavr
47+
board = ATtiny3224
48+
49+
You can override default ATtiny3224 settings per build environment using
50+
``board_***`` option, where ``***`` is a JSON object path from
51+
board manifest `ATtiny3224.json <https://github.com/platformio/platform-atmelmegaavr/blob/master/boards/ATtiny3224.json>`_. For example,
52+
``board_build.mcu``, ``board_build.f_cpu``, etc.
53+
54+
.. code-block:: ini
55+
56+
[env:ATtiny3224]
57+
platform = atmelmegaavr
58+
board = ATtiny3224
59+
60+
; change microcontroller
61+
board_build.mcu = attiny3224
62+
63+
; change MCU frequency
64+
board_build.f_cpu = 16000000L
65+
66+
Debugging
67+
---------
68+
:ref:`piodebug` currently does not support ATtiny3224 board.
69+
70+
Frameworks
71+
----------
72+
.. list-table::
73+
:header-rows: 1
74+
75+
* - Name
76+
- Description
77+
78+
* - :ref:`framework_arduino`
79+
- Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences

0 commit comments

Comments
 (0)