djuseeq / Ch376msc

Arduino library for CH376 mass storage contoller
MIT License
77 stars 17 forks source link

moveCursor() working #46

Open Aravinthkalai1 opened 3 years ago

Aravinthkalai1 commented 3 years ago

I want to align 5 different types of data in a single notepad file, so am trying to use moveCursor() function but it's a bit confusing can you help me how to set the Cursor position on a notepad. You have mentioned that the value from (00000000h-ffffffffh) what does it means can you give one example?

djuseeq commented 3 years ago

Hello, this moves the file pointer to where you want to write or read (0 is the first position). If you enter e.g. 0 as a value, that means the beginning of the file, if the value is 15, the pointer will point to the 16th character from which you can start the read or write process.