From 0f880e5ed87ee7121a36c14c9beb2c83c4dba294 Mon Sep 17 00:00:00 2001 From: Daniel Tang Date: Thu, 28 May 2026 08:59:13 -0400 Subject: [PATCH 1/2] Add hal_microchip module to west.yml --- west.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/west.yml b/west.yml index c08fee9..321d66a 100644 --- a/west.yml +++ b/west.yml @@ -28,6 +28,13 @@ manifest: path: modules/hal/cmsis_6 groups: - hal + + - name: hal_microchip + remote: local-repos + revision: 86f3ea6b389d860332bd81ae8b97543def619395 + path: modules/hal/microchip + groups: + - hal self: path: app From b8a00cd412138f49ef8ad2666e7937313b898872 Mon Sep 17 00:00:00 2001 From: Daniel Tang Date: Thu, 28 May 2026 08:59:52 -0400 Subject: [PATCH 2/2] Update main.c to replace printf() statements with printk() --- main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.c b/main.c index 65a0b30..05f40e8 100644 --- a/main.c +++ b/main.c @@ -221,13 +221,13 @@ int main(void) { } // The Zephyr Shell starts automatically in the background on the UART. - printf("\n\n======================================\n"); - printf(" THEATER PANIC: THE ADVENTURE \n"); - printf("======================================\n"); - printf("Type 'look' to see where you are.\n"); - printf("Type 'go ' to move.\n"); - printf("Type 'reset' to start over.\n"); - printf("======================================\n\n"); + printk("\n\n======================================\n"); + printk(" THEATER PANIC: THE ADVENTURE \n"); + printk("======================================\n"); + printk("Type 'look' to see where you are.\n"); + printk("Type 'go ' to move.\n"); + printk("Type 'reset' to start over.\n"); + printk("======================================\n\n"); return 0; } \ No newline at end of file