#include <zephyr.h>
void thread_function(void) {
printk("Thread started\n");
}
K_THREAD_DEFINE(my_thread, STACK_SIZE, thread_function, NULL, NULL, NULL, PRIORITY, 0, 0);
The error:
#include <zephyr.h>
void thread_function(void) {
printk("Thread started\n");
}
K_THREAD_DEFINE(my_thread, STACK_SIZE, thread_function, NULL, NULL, NULL, PRIORITY, 0, 0);
The error: