IO: Add lazy atomic OR, AND and CLEAR functions for flags
IO needs atomic updates of a few critical status flags, but doing these always atomic (with interrupts disabled) might cause a too high interrupts disabled interval. In order to avoid this only operations that change the state of the target variable are done with interrupts disabled, while operations without an effect on the target variable are not executed.
Showing
- src/modules/px4iofirmware/controls.c 23 additions, 21 deletionssrc/modules/px4iofirmware/controls.c
- src/modules/px4iofirmware/mixer.cpp 11 additions, 11 deletionssrc/modules/px4iofirmware/mixer.cpp
- src/modules/px4iofirmware/px4io.h 6 additions, 0 deletionssrc/modules/px4iofirmware/px4io.h
- src/modules/px4iofirmware/safety.c 2 additions, 2 deletionssrc/modules/px4iofirmware/safety.c
Please register or sign in to comment