Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/platformio/platform-atmelmegaavr
Atmel megaAVR: development platform for PlatformIO
https://github.com/platformio/platform-atmelmegaavr
arduino avr megaavr platformio platformio-platform
Last synced: about 1 month ago
JSON representation
Atmel megaAVR: development platform for PlatformIO
- Host: GitHub
- URL: https://github.com/platformio/platform-atmelmegaavr
- Owner: platformio
- License: apache-2.0
- Created: 2019-10-15T19:02:49.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-07T22:18:15.000Z (7 months ago)
- Last Synced: 2024-10-01T04:05:04.571Z (about 1 month ago)
- Topics: arduino, avr, megaavr, platformio, platformio-platform
- Language: Python
- Homepage: https://registry.platformio.org/platforms/platformio/atmelmegaavr
- Size: 105 KB
- Stars: 29
- Watchers: 7
- Forks: 21
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Atmel megaAVR: development platform for [PlatformIO](https://platformio.org)
[![Build Status](https://github.com/platformio/platform-atmelmegaavr/workflows/Examples/badge.svg)](https://github.com/platformio/platform-atmelmegaavr/actions)
Microchip's megaAVR is suitable for applications requiring large amounts of code and offers substantial program and data memories with performance up to 20 MIPS. Based on industry-leading, proven technology, the megaAVR family offers Microchip's widest selection of devices in terms of memories, pin counts, and peripherals.
* [Home](https://registry.platformio.org/platforms/platformio/atmelmegaavr) (home page in the PlatformIO Registry)
* [Documentation](https://docs.platformio.org/page/platforms/atmelmegaavr.html) (advanced usage, packages, boards, frameworks, etc.)# Usage
1. [Install PlatformIO](https://platformio.org)
2. Create PlatformIO project and configure a platform option in [platformio.ini](https://docs.platformio.org/page/projectconf.html) file:## Stable version
```ini
[env:stable]
platform = atmelmegaavr
board = ...
...
```## Development version
```ini
[env:development]
platform = https://github.com/platformio/platform-atmelmegaavr.git
board = ...
...
```# Configuration
Please navigate to [documentation](https://docs.platformio.org/page/platforms/atmelmegaavr.html).