Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T05:31:47.000Z (12 months ago)
- Last Synced: 2024-01-09T06:37:08.154Z (12 months ago)
- Topics: esp8266, esp8266-rtos, freertos
- Language: C
- Size: 4.88 KB
- Stars: 7
- Watchers: 3
- Forks: 5
- 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-projectEXTRA_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