2022-10-24 03:16 PM
Hi,
I'm trying to know how can I send a txt file through UART protocol to a Bluetooth module so I can transfer data wirelessly to a pc.
I could read line by line sending it continuously, but I wanted to know if I could send it as a file that I could then transfer or at least send all the file text as one.
Thanks in advance.
2022-10-24 03:40 PM
There are many ways to do this. It would be helpful to know the basics of your system design.
2022-10-24 04:20 PM
You can send the data in chunks in a near continuous fashion from end to end
As to protocols, perhaps look at X,Y and Z-Modem
2022-10-24 04:50 PM
So my system has the objective to collect data from diverse sensors by UART, SPI and ADC's. Then we store all the data in a txt file we save on an sd card module we have on the PCB. However, we wanted to make the process of transferring data to the pc more efficient by making it wirelessly.
2022-10-24 04:51 PM
I'll have a look at it!