Hi,
I am using Keil.
I want to read a csv file to a array of 256 (maybe 512) elements.
What a library and function I need to use?
(I want to set values of sine in this array).
Hello, this is standard C. You can use strtok() to delimit the input data. You can find very many example routines implementing this functionality on github and similar.If your question is regarding how the target accesses the file, presumably from the host machine running the debugger, this uses a mechanism known as semihosting:http://www.keil.com/support/man/docs/armcc/armcc_pge1358787046598.htmRegardsRonan