Can I write code in C++ for MMLite, and if so, what is entailed?
MMLite supports a subset of C++ called Embedded C++. Some C++ examples ship with the product. Embedded C++ supports many C++ features but does not support exception handling or run-time type identification. To this end, MMLite provides some (but not all) of the supporting runtime functions required by the various C++ compilers. If you wish to make use of the unsupported features you will just have to (re) implement the runtime functions yourself. This is not hard, but takes up code space.