1 /* 2 * Copyright 2025 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 9 #include "dsp.h" 10 main(void)11 int main(void) 12 { 13 printk("Hello World! %s\n", CONFIG_BOARD_TARGET); 14 15 printk("[ARM] Starting DSP...\n"); 16 dsp_start(); 17 18 return 0; 19 } 20