Skip to main content
ALiar.1
Associate
December 13, 2019
Question

Availability of the library's core source files

  • December 13, 2019
  • 1 reply
  • 561 views

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?

This topic has been closed for replies.

1 reply

Martin KJELDSEN
Principal III
December 16, 2019

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