Difference between revisions of "STM32 Bit Banding"

From Stm32World Wiki
Jump to navigation Jump to search
(Created page with "Category:STM32Category:STM32 DevelopmentCategory:C{{metadesc|Bit Banding in STM32 MCUs}} To be added")
 
Line 1: Line 1:
 
[[Category:STM32]][[Category:STM32 Development]][[Category:C]]{{metadesc|Bit Banding in STM32 MCUs}}
 
[[Category:STM32]][[Category:STM32 Development]][[Category:C]]{{metadesc|Bit Banding in STM32 MCUs}}
 +
In older 8-bit [[MCU]]s it was quite common to have instructions to clear or set a bit as one atomic instruction.  By atomic it means the read->modify->write can not be interrupted resulting in other bits being set wrongly.
 +
 +
== Miscellaneous Links ==
 +
 
To be added
 
To be added

Revision as of 13:33, 19 October 2024

In older 8-bit MCUs it was quite common to have instructions to clear or set a bit as one atomic instruction. By atomic it means the read->modify->write can not be interrupted resulting in other bits being set wrongly.

Miscellaneous Links

To be added