2019-12-13 12:57 PM
It appears that not all declared methods are implemented in the provided header and source files. Some methods like HAL::flushFrameBuffer, are apparently implemented only in the core static libraries. Is there any plan to release the source code of these libraries?
2019-12-16 04:05 AM
No plan, no.
In the case of flushFrameBuffer, this is a method you will overwrite. It does nothing in its default implementation =) It gets called after endFrame() and lets you transfer a block of memory (determined through the Rect argument that indicates which part of the framebuffer was updated) to a serial display. It's a hook that the user implements.
/Martin