Hi,
I am using nRF52 SDK v16 and I am wondering where one can find relevant information regarding peripheral event handlers.
Here are a few puzzles I have for now:
- Are peripheral (e.g. timer device) event handlers running in a different thread other than the main thread?
- What limitations one must obey when writing such even handlers?
- is memcpy() safe to use?
- shall the processing be quick? how quick?
- When will those event handlers be called? how much delay it has from the occurring of the peripheral event?
- can app designer have ways (e.g. IRQ priority) to control the delay to event handler?
I am asking these because when the event may happen frequently and need be handled in a timely manner.
Regards,
yf13