2021-12-22 11:57 PM
Hello,
I am working on Nucleo-H745ZIQ board. I have to interface the DAC to it.And i have to get the data in CSV file .And after that I have to read the file and dump through SPI and generate the waveform.In my board I dont have the SD card .Then using USB how can I access the CSV file.Can you suggest me the solution for that.
2021-12-23 07:26 AM
Easiest way would be to convert the CSV file to a data structure and include it in your compiled code. Otherwise you're going to need to send it to the MCU somehow, either through UART or USB most commonly. This will require coordination on the PC side.
2021-12-23 08:12 AM
Can you please share any example of it. How can I access it using UART or USB.
2021-12-23 09:44 AM
Do you have any software guys working with you?
DAC, an OUTPUT, where's the data coming from?
Can you download it to the board, and store it in an unused are of FLASH perhaps?
Could you download it via a terminal application, X-MODEM-1K write to FLASH?
Write a simple Windows app to read the file and send it over a COM port a line at a time, or stream? Do you have the ability to do that?
Could you use the NUCLEO VCP COM port?
Could you find a USB CDC Example in the Cube H7 trees?
Could you wire up an SD Card, SDMMC+FATFS?
2021-12-26 09:46 PM
I am using GUI application.Using GUI application I get the data through USB and then I have to give to DAC.But if I have to use CSV file How can I use it.I cannot use the microsd card.I am using NUCLEo-H745ZIQ board.Can you suggest any example of it.