Part Number: TM4C1294NCPDT
Tool/software: TI C/C++ Compiler
In my application I receive setup data via UDP. Data that is to be sent on to external devices via GPIO based on hardware handshake interrupt.
Setup data is in general organized in a fixed pattern, that is repeated over and over. Usually smaller changes in maybe two words in the beginning of the pattern, can happen from time to time.
How do I ensure, that those changes are allowed to go into the pattern, before the transmitter send it out?
Under Windows I am used to Critical Sections, Mutex etc, where processing is put on stand-by, until released. But on a microcontroller with, at the time, no x-tra threads?
I can see one solution in, that the receiver simply tells the output sequencer to do the changes.
Are there other options?