ESP_IDF UART
UART
Universal Asynchronous Receiver/Transmitter
ESP_IDF Documents
specification
- Setting Communication Parameters
- Setting Communication Pins
- Driver Installation
- Running UART Communication
- Using Interrupt
- Deleting a Driver
Use Any Pin
보드레이트, 패리티, 스탑비트 등등
read/write
받고 쓰는 방식
예제
- uart_async_rxtxtasks
- tx 보다 rx의 우선순위가 하나 더 높다.
- tag 사용
- rxBytes -> 마지막에 NULL 넣기
- 16진수 출력
Logging libary
오류 찾을 때(debugging) log tag를 달아서 정리해서 볼 수 있음
LOGI : log information
LOGE : log error(lowest)
LOGW : log warning
LOGD : log debug
LOGV : log verbose(highest)
Leave a comment