Henrik Larsson
Henrik Larsson
Changing the check function in creedsolo.pyx to the below code seem to fix the issue. ``` def check(self, data, nsym=None): '''Check if a message+ecc stream is not corrupted (or fully...
I'm also getting this error on a OnePlus 6T (Android version 11, OxygenOS 11.1.2.2). Hope someone can find the cause!
My understanding is that only the CS pin needs to be pulled up, correct? I have tried both with and without pullup and the logs are identical. I will look...
I'm not sure how to do the raw throughput... I tried: sudo insmod ./esp32_spi.ko resetpin=3 raw_tp_mode=1 Is that the way to test? I get the same message in dmesg: >...
Great, I don't know how to enable hex prints (apart from the few that was already enabled and printed in demsg) so I need guidance on that from @kapilkedawat to...
I changed spi/esp_spi.c from line 327 to print the rx/tx buffers on the host: if (tx_skb) { trans.tx_buf = tx_skb->data; esp_hex_dump_verbose("tx: ", trans.tx_buf, SPI_BUF_SIZE); } else { tx_skb = esp_alloc_skb(SPI_BUF_SIZE);...
Hi @Shreyas0-7 ! I haven't applied your patch because I just saw the last few commits from a few days ago regarding "deassert cs for spi" and thought that sounded...
> This looks to be csv. Can you please sendme the raw dump? Is this what you want? [RawExportBinary_4598acd_With_ESP_SPI_DEASSERT_HS_ON_CS.zip](https://wiroc.se/RawExportBinary_4598acd_With_ESP_SPI_DEASSERT_HS_ON_CS.zip) This is with the latest code commit 4598acd and ESP_SPI_DEASSERT_HS_ON_CS option...
> Still I would suggest to test raw throughput test first, instead of jumping to wifi. sudo insmod ./esp32_spi.ko resetpin=3 **raw_tp_mode=2** Gives this result in dmesg: > [ 96.951174] esp32_spi:...
> Still I would suggest to test raw throughput test first, instead of jumping to wifi. Edit 2025-09-27: I posted another post below after applying the patch with hex prints....