logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 7adb4dc6fb967f198d89dddd08de0903695f3875
parent a8fb9e1462284eb2b9d5da11c08f0288422019b1
Author: QMK Bot <hello@qmk.fm>
Date:   Sat, 29 Mar 2025 13:20:13 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mmodules/qmk/hello_world/hello_world.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/qmk/hello_world/hello_world.c b/modules/qmk/hello_world/hello_world.c @@ -7,7 +7,7 @@ ASSERT_COMMUNITY_MODULES_MIN_API_VERSION(1, 0, 0); uint32_t delayed_hello_world(uint32_t trigger_time, void *cb_arg) { - printf("Hello, world! I'm a QMK based keyboard! The keymap array size is %d bytes.\n", (int)hello_world_introspection().total_size); + dprintf("Hello, world! I'm a QMK based keyboard! The keymap array size is %d bytes.\n", (int)hello_world_introspection().total_size); return 0; }