I'm trying to learn how to create addins for this calculator and managed to compile the code like the below but when I run it on my calculator only some traces of the default Equation background screen image are visible - when I press Menu to get out the image shows properly just for a moment before exiting to the main home screen. Is it a problem with the below code or something else - please help.
Code:
Code:
#include <fxcg/display.h>
#include <fxcg/keyboard.h>
int main() {
SetBackGround(1);
int key;
while (1) {
GetKey(&key);
}
return 0;
}