https://github.com/devbis/esp8266-rtos-softuart
Software UART for esp8266 RTOS SDK
https://github.com/devbis/esp8266-rtos-softuart
esp8266 esp8266-rtos freertos
Last synced: 9 months ago
JSON representation
Software UART for esp8266 RTOS SDK
- Host: GitHub
- URL: https://github.com/devbis/esp8266-rtos-softuart
- Owner: devbis
- License: mit
- Created: 2020-01-28T19:21:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T05:31:47.000Z (about 2 years ago)
- Last Synced: 2025-04-20T20:35:32.418Z (10 months ago)
- Topics: esp8266, esp8266-rtos, freertos
- Language: C
- Size: 4.88 KB
- Stars: 7
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Soft UART for ESP8266 RTOS SDK
This is a slightly modified sources of the extra component from
esp-open-rtos project to run on the [ESP8266 RTOS SDK](https://github.com/espressif/ESP8266_RTOS_SDK)
## Supported verstions
### ESP8266 RTOS SDK
* master
* 3.2
## How to use
Clone this repository somewhere, e.g.:
```Shell
cd ~/myprojects/esp
git clone https://github.com/devbis/esp8266-rtos-softuart.git
```
Add path to components in your project makefile, e.g:
```Makefile
PROJECT_NAME := my-esp-project
EXTRA_COMPONENT_DIRS := /home/user/myprojects/esp/esp8266-rtos-softuart/components
include $(IDF_PATH)/make/project.mk
```
## Credits
- [Ruslan V. Uss](https://github.com/UncleRus) developer of the original component for
esp-open-rtos SDK