Hi,
I need to run a lowpass filter and also touch screen interrupts on my stm32 processor. So I designed lowpass filter with audio weaver and flashed it on the processor. Can I be able to use multi threading to run touch screen interrupts always on another thread?
if so how to acheive this?
11:58am
Hello,
For most boards you should be able to set up the touch screen interrupt and also use the interrupts necessary to implement our BSP. There are a couple of boards that use the same interrupt for the touch screen as for some other peripherals (I believe it was the CODEC DMA complete interrupt) and if this is the case it might present an issue.
If you do find an issue with interrupt re-use, you can always create a thread that waits on a semaphore. When the semaphore is triggered it does some work and the loops back to wait on the semaphore again. The semaphore can be triggered from an interrupt handler.
Thanks
-Axel