cancel
Showing results for 
Search instead for 
Did you mean: 

Availability of the library's core source files

ALiar.1
Associate

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?

1 REPLY 1
Martin KJELDSEN
Chief III

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