ESP32使用SPI连接到单独的IC

时间:2018-09-19 02:43:16

标签: c spi esp32

我正在尝试使用ESP IDF为C语言编写S1V30120解密文本合成IC的包装。我在以下代码中遇到问题。

printf("Hello world!\n");
esp_err_t ret;
spi_device_handle_t spi;
spi_bus_config_t buscfg={
    .miso_io_num=PIN_NUM_MISO,
    .mosi_io_num=PIN_NUM_MOSI,
    .sclk_io_num=PIN_NUM_CLK,
    .quadhd_io_num=-1,
    .quadwp_io_num=-1
};
spi_device_interface_config_t devcfg={
    .clock_speed_hz=750000,
    .mode=0,
    .spics_io_num=PIN_NUM_CS,
    .queue_size=7
};
ret=spi_bus_initialize(HSPI_HOST, &buscfg, 1);
assert(ret==ESP_OK);

ret=spi_bus_add_device(HSPI_HOST, &devcfg, &spi);
uint8_t rec[20];
assert(ret==ESP_OK);
uint8_t cmd[] = {0xAA, 0x04, 0x00, 0x05, 0x00}; // get information command
printf("waiting for rdy");
while (gpio_get_level(PIN_NUM_RDY) == 0){};
//create 2 transactions 1 for transmitting the GET INFORMATION command
//and 1 for getting the data back from the ic
spi_transaction_t t;
spi_transaction_t r;
memset(&t, 0, sizeof(t));
t.length=5*8;
t.tx_buffer=&cmd;
r.length=20*8;
r.rx_buffer=&rec;

ret = spi_device_transmit(spi, &t);
assert( ret == ESP_OK);
ret = spi_device_transmit(spi, &r);
assert(ret == ESP_OK);
printf((char*)r.rx_data);
/* Print chip information */
printf("Restarting now.\n");

我很确定连接应该处于全双工模式,并且我相信设置正确。返回的信息应该是20个字节,但我收到了错误

rxdata transfer > 32 bits without configured DMA

此刻,我正在遵循两段可能有帮助的代码。

在esp idf中使用SPI的示例: https://github.com/espressif/esp-idf/blob/3276a1316f66a923ee2e75b9bd5c7f1006d160f5/examples/peripherals/spi_master/main/spi_master_example_main.c

在Arduino IDE中使用dectalk ic的示例: https://electronza.com/arduino-due-s1v30120-text-speech-code/2/

解密协议表: https://github.com/MikroElektronika/Click_TextToSpeech_S1V30120/blob/master/datasheet/S1V30120%20Protocol%20Specification.pdf

以及esp idf的SPI文档: https://gitdemo.readthedocs.io/en/latest/api/peripherals/spi_master.html

协议表还说明了有关事务之后发送16字节0x00的信息,但是我从未见过。

我希望我对所有这些信息都足够了解,并预先感谢可以提供帮助的任何人!

1 个答案:

答案 0 :(得分:1)

您在行中使用了“1”作为 DMA

ret=spi_bus_initialize(HSPI_HOST, &buscfg, 1);

但是正如docs中提到的,需要配置DMA。 对于 these boards 上可用的外部 PSRAM,这意味着

pvPortMallocCaps(20, MALLOC_CAP_DMA)

如果没有 DMA,每个事务只能获得 32 位数据。