Which Cortex-M3 interrupts can I use for general purpose work?

前端 未结 5 992
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-12 07:50

I\'d have some code that needs to be run as the result of a particular interrupt going off.

I don\'t want to execute it in the context of the interrupt itself but I

5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-12 08:14

    The "more official way" or rather the conventional method is to use a priority based preemptive multi-tasking scheduler and the 'deferred interrupt handler' pattern.

提交回复
热议问题