2022-04-15 06:16 AM
Does it exist texts database library for STM32? like this for Arduino https://github.com/jwhiddon/EDB
PS - I need to read from library and write to library.
2022-04-15 11:22 AM
Why would it need to be STM32 specific?
Why wouldn't any light-weight C implementation suffice?
2022-04-15 11:42 AM
I did not quite correctly asked a question, I'm beginner... Of course, any lightweight "С" implementation will be ok.
I found only it is https://github.com/symisc/unqlite
Maybe someone advise better solution?
2022-04-15 01:33 PM
It's not entirely clear what the "database" will do for you here, that you couldn't manage with say arrays or linked-list of structures. Most people just come up with a very tailored solution, not a full blown database manager.
>> I need to read from library and write to library.
Eh? Does this involve files? Storing the data in some semi-permanent manner?
2022-04-16 08:11 AM
Thanks for the answer! I'm not strong in programming and thought that the "database" would make to me easier my life...