What is open source storage for bare metal Cortex M3 without OS

I am looking for suggestions for a data warehouse written in C that will compile for ARM Cortex M3 without any operating system.

I want this to be:

  • written in C
  • preferably free and / or open source
  • can be compiled using gcc
  • runs on an open metal processor without the support of an operating system or file system.

It can be SQL or not. I would like something like JSON-compatible MongoDB (i.e., Can be serialized via JSON in simple C char buffers.)

The needs of a data warehouse are to manage data in RAM with a fixed memory allocation. No "dynamic" distribution (i.e. no malloc).

+5
1

SQLite3 - , /, gdbm.

+3

All Articles