Search found 4 matches
- Thu Aug 31, 2017 2:15 am
- Forum: ESP-IDF
- Topic: UART Baud Rate
- Replies: 2
- Views: 6812
Re: UART Baud Rate
Another thing I should mention is that if I just use uart_set_params, and not uart_set_baudrate, then it doesn't panic, but it starts at 115200 regardless of what I set the config to.
- Tue Aug 29, 2017 3:51 pm
- Forum: ESP-IDF
- Topic: UART Baud Rate
- Replies: 2
- Views: 6812
UART Baud Rate
I am having trouble settings UART_NUM_1's baudrate to 5000000.
I am trying to set it with param_config and set_baudrate, but neither work. Calling uart_set_baudrate with 5000000 causes a panic.
Am I missing a step to the ritual?
const uart_config_t uart_config = {
.baud_rate = 5000000,
.data ...
I am trying to set it with param_config and set_baudrate, but neither work. Calling uart_set_baudrate with 5000000 causes a panic.
Am I missing a step to the ritual?
const uart_config_t uart_config = {
.baud_rate = 5000000,
.data ...
- Fri Jul 21, 2017 9:51 pm
- Forum: Sample Code
- Topic: ESPTOOL Rust Implementation
- Replies: 0
- Views: 3970
ESPTOOL Rust Implementation
I wanted to learn more about the esptool and the ROM bootloader, and I like Rust, so I decided to implement esptool.py in Rust.
I only have communications up and running, and read_mac implemented, so I have a long way to go, but I wanted to post this now in case anyone wanted to help/learn about ...
I only have communications up and running, and read_mac implemented, so I have a long way to go, but I wanted to post this now in case anyone wanted to help/learn about ...
- Sun Jul 16, 2017 7:00 pm
- Forum: Documentation
- Topic: Documentation Requests/Feedback
- Replies: 81
- Views: 252742
Re: Document Requests
If I want to port the esptool.py to another language, is there a document somewhere specifying the protocol used to communicate with the ROM bootloader? Or do I have to infer it from the python source? I will do the latter if the former isn't available, but having documentation would speed up the ...