Skip to content
Discussion options

You must be logged in to vote

The communication between multiple cores is part of the magic of an multi-core application and one could probably write books about this. That's why I can only give an example.

First you have to know, that a variable, which is defined in a Circle multi-core app is visible on all cores. So if you write to this variable on one core, an other core can watch this. So variables can be used for communication between multiple cores.

Unfortunately you cannot directly call a subroutine from one core on another core. All cores run their one code, normally in a loop, and process the data, they are working on. But they can communicate, if they share some of this data.

It depends on, what your applica…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@tonycarbon
Comment options

Answer selected by tonycarbon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants