We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db8976 commit 7190fc2Copy full SHA for 7190fc2
lvglwasm.js
@@ -47,9 +47,10 @@ const ctx = canvas.getContext('2d');
47
48
// Main Loop
49
const main = function() {
50
- console.log("Main function started");
+ console.log("main: start");
51
52
const loop = function() {
53
+ console.log("loop: start");
54
// TODO: Init LVGL
55
56
// Render the LVGL Widgets
@@ -60,8 +61,11 @@ const main = function() {
60
61
62
// loop to next frame. Disabled for now because it slows down the browser.
63
// TODO: window.requestAnimationFrame(loop);
64
+
65
+ console.log("loop: end");
66
};
67
loop();
68
+ console.log("main: end");
69
70
71
// Log WebAssembly Messages from Zig to JavaScript Console
0 commit comments