Re: move code from interrupt context to task context

2019-09-04 Thread Catalin Demergian
Hi, I did implement this with Rate Monotonic Manager. I followed https://docs.rtems.org/releases/rtems-docs-4.11.3/c-user/rate_monotonic_manager.html#simple-periodic-task (section 11.3.7, Simple Periodic Task) This made my tests to pass, but then I wondered if there is any clock drift ... What I m

Re: move code from interrupt context to task context

2019-08-20 Thread Joel Sherrill
On Tue, Aug 20, 2019 at 7:50 AM Catalin Demergian wrote: > > Hello, > The context is RTEMS-4.11.3 on STM32H7. > I have a timer interrupt routine and I'm calling some functions from it. > I would like to write a RTEMS task (rtems_task_create API) and call those > functions from that thread instead