@Peter BENSCH "If you want to create a real PDF, you must also write the appropriate data into the file."So i am looking for way to to convert my data lets say any string into data that further gets stored in pdf file and shows my string.Is there an...
Hi @Ghofrane GSOURI I have already followed the above mentioned steps but i am not able to create a PDF file using f_open command.ThanksKaranvir Singh
Using FATS (file handling commands) of STM32 MCU.f_open(&myFile, "TEST.TXT", FA_WRITE |FA_OPEN_APPEND);//for text files
f_open(&myFile, "TEST.pdf", FA_WRITE |FA_OPEN_APPEND);//for PDF files .pdf get created in my connected pen drive but when i try to...