Skip to content

Commit 3c57873

Browse files
committed
Clean up
1 parent 7c6af9c commit 3c57873

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

feature-phone.wasm

0 Bytes
Binary file not shown.

feature-phone.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! LVGL Feature Phone UI for PinePhone and WebAssembly.
22
//! This app runs on PinePhone with Apache NuttX RTOS, and in a Web Browser with WebAssembly.
3-
//! https://lupyuen.github.io/articles/lvgl3
3+
//! https://lupyuen.github.io/articles/lvgl4
44

55
/// Import the Zig Standard Library
66
const std = @import("std");

nuttx.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//! LVGL Functions specific to Apache NuttX RTOS
2+
//! https://lupyuen.github.io/articles/lvgl4
23

34
/// Import the Zig Standard Library
45
const std = @import("std");

wasm.zig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//! LVGL Functions specific to WebAssembly
2+
//! https://lupyuen.github.io/articles/lvgl4
23

34
/// Import the Zig Standard Library
45
const std = @import("std");
@@ -131,7 +132,7 @@ var indev_drv: c.lv_indev_drv_t = undefined;
131132
///////////////////////////////////////////////////////////////////////////////
132133
// LVGL Porting Layer for WebAssembly
133134

134-
/// TODO: Return the number of elapsed milliseconds
135+
/// Return the number of elapsed milliseconds
135136
export fn millis() u32 {
136137
elapsed_ms += 1;
137138
return elapsed_ms;

0 commit comments

Comments
 (0)