硬件 spi有跑过 可达80m
所以测试下 模拟的
速度太慢了
Search found 4 matches
- Wed Apr 21, 2021 8:40 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP32 GPIO速率慢
- Replies: 5
- Views: 4860
- Wed Apr 21, 2021 6:30 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP32 GPIO速率慢
- Replies: 5
- Views: 4860
Re: ESP32 GPIO速率慢
我是使用 io口模拟spi驱动ili9341
发现刷屏速度有点慢
```c
gpio_pad_select_gpio(SPI_MOSI_PIN);
gpio_set_direction(SPI_MOSI_PIN, GPIO_MODE_OUTPUT);
#define SPI_MOSI_H gpio_set_level(SPI_MOSI_PIN,1)
#define SPI_MOSI_L gpio_set_level(SPI_MOSI_PIN,0)
```
发现刷屏速度有点慢
```c
gpio_pad_select_gpio(SPI_MOSI_PIN);
gpio_set_direction(SPI_MOSI_PIN, GPIO_MODE_OUTPUT);
#define SPI_MOSI_H gpio_set_level(SPI_MOSI_PIN,1)
#define SPI_MOSI_L gpio_set_level(SPI_MOSI_PIN,0)
```
- Wed Apr 21, 2021 6:22 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP32 GPIO速率慢
- Replies: 5
- Views: 4860
Re: ESP32 GPIO速率慢
是的 就是使用 gpio_set_level
- Tue Apr 20, 2021 9:57 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP32 GPIO速率慢
- Replies: 5
- Views: 4860
ESP32 GPIO速率慢
使用的是 demo代码,稍微修改下,使io口一直翻转,示波器查看io口电平变化间隔。
230ns 也就是 5m 以下的速率
这个速率是不是有点慢呀
还是需要设置什么吗
230ns 也就是 5m 以下的速率
这个速率是不是有点慢呀
还是需要设置什么吗