x
Menu

Embedded Systems Programming

Other,

Updated On 02 Feb, 19

Overview

Getting Started - Counting - Flow of Control - Variables and Pointers - Blinking the LED - Preprocessor and volatile - Bit-wise operators in C - Arrays and Pointer Arithmetic - Functions and the Stack - Modules, Recursion, AAPCS - Stack Overflow and Other Pitfalls of Functions - stdint.h and mixing types - structures and CMSIS - startup code part - interrupts

Includes

Lecture 7: Bit-wise operators in C

4.1 ( 11 )


Lecture Details

Embedded Systems Programming Lesson-6 shows how to set, clear, toggle, and shift individual bits by means of the bit-wise operators in C.

The lesson starts with explaining why you need to manipulate individual bits in the GPIOF DATA register to blink various colors of the composite LED on the Launchpad board.

Next, you learn how all six C bit-wise operators work. You learn about bit-wise OR, bit-wise AND, bit-wise exclusive-OR, the ones complement operator, the right bit-shift, and left bit-shift.

Next, you step to the debugger and see all these operators in action and you actually learn about the ARM instructions ORR, AND, EOR, MVN, LSR, and LSR.

Next, you learn about the differences between right-shifting unsigned and signed numbers. You perform additional experiments with right-shifting positive and negative signed
numbers. At the disassembly level you learn about the ASR instruction (arithmetic shift), which performs sign-extension of signed numbers in the 2-s complement representation.

Next, you apply the knowledge to blink the red-LED while keeping the blue-LED turned on all the time.

You also improve the readability of your code by applying macros that use bit shifts.

The next lesson will answer several questions about the Stellaris GPIO DATA registers, which demonstrates another, hardware-assisted way of manipulating whole groups of bits.

Stay tuned...

Miro Samek
state-machine.com

---
Resources

YouTube playlist of the course
httpwww.youtube.complaylist?list=PLPW8O6W-1chwyTzI3BHwBLbGQoPFxPAPM

Course web-page
httpwww.state-machine.comquickstart

Ratings

0


0 Ratings
55%
30%
10%
3%
2%
Comments
comment person image

Sam

Excellent course helped me understand topic that i couldn't while attendinfg my college.

Reply
comment person image

Dembe

Great course. Thank you very much.

Reply
Send