cancel
Showing results for 
Search instead for 
Did you mean: 

Does it exist texts database library for STM32?

DK.7
Senior

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.

4 REPLIES 4

Why would it need to be STM32 specific?

Why wouldn't any light-weight C implementation suffice?

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

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?

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?

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

Thanks for the answer! I'm not strong in programming and thought that the "database" would make to me easier my life...