Is there any way to get information from the computer to the core without pausing? I have a set of experiments that I want to perform concurrently with the precise tracking of a certain frequency. The architecture I have in mind is that every other experiment that I perform on an ion is used to check and update this frequency, and the intervening experiments are used to study some other physics of interest.
The challenge is that the frequency check must be performed with high regularity, every 5 ms or so. This means that I cannot ever call self.scheduler.pause, which uses up quite a bit more time, I think a second or so.
Is there any way that I can load information from the computer into a buffer that the core can then check sometime later?