Hello,
I'm developing a project which uses two threads. One configures UART and keeps on a while(1) loop. But once it receives a byte, an ISR pushes the incoming byte into a Message Queue. Meanwhile, the other thread constantly reads the Message Queue (also on a while(1) loop) and prints its content.
In order to execute both threads for the same time, I set them as preemptive threads by giving them the same non-negative priority value and enable the schedule's time slicing capability.
But here comes the problem. When I set the thread and scheduling config on my prj.conf file like here:
And I open this project in SES IDE, I got the next error pops out:
¿Why does it say my lines are malformed?
Thank you in advance