https://github.com/platformio/platform-intel_mcs51
Intel MCS-51 (8051): development platform for PlatformIO
https://github.com/platformio/platform-intel_mcs51
8051 intel intel-8051 mcs51 platformio platformio-platform
Last synced: 2 months ago
JSON representation
Intel MCS-51 (8051): development platform for PlatformIO
- Host: GitHub
- URL: https://github.com/platformio/platform-intel_mcs51
- Owner: platformio
- License: apache-2.0
- Created: 2016-09-03T16:06:43.000Z (about 9 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-04T09:27:20.000Z (about 1 year ago)
- Last Synced: 2025-08-01T00:31:01.208Z (2 months ago)
- Topics: 8051, intel, intel-8051, mcs51, platformio, platformio-platform
- Language: Python
- Homepage: https://registry.platformio.org/platforms/platformio/intel_mcs51
- Size: 120 KB
- Stars: 60
- Watchers: 5
- Forks: 48
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Intel MCS-51 (8051): development platform for [PlatformIO](https://platformio.org)
[](https://github.com/platformio/platform-intel_mcs51/actions)The Intel MCS-51 (commonly termed 8051) is an internally Harvard architecture, complex instruction set computer (CISC) instruction set, single chip microcontroller (µC) series developed by Intel in 1980 for use in embedded systems.
* [Home](https://registry.platformio.org/platforms/platformio/intel_mcs51) (home page in PlatformIO Registry)
* [Documentation](https://docs.platformio.org/page/platforms/intel_mcs51.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 = intel_mcs51
board = ...
...
```## Development version
```ini
[env:development]
platform = https://github.com/platformio/platform-intel_mcs51.git
board = ...
...
```# Configuration
Please navigate to [documentation](https://docs.platformio.org/page/platforms/intel_mcs51.html).