Which C statement sets bit 7 and bit 4 in the GPIO_PDDR register to 0 and leaves the other bits unchanged. GPIOP_PDDR &= O×FFFFFF5F; GPIO_PDDR = 0XFFFFFF6F; GPIO_PDDR = GPIO_PDDR & 0XFFFFFF6F; GPIO_PDDR = GPIO_PDDR|0x00000090;

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

please type so that i can read your solution

Which C statement sets bit7 and bit 4 in the GPIO_PDDR register to 0 and leaves the other bits unchanged.
GPIOP_PDDR &= 0XFFFFFF5F;
GPIO_PDDR = OXFFFFFF6F;
GPIO_PDDR = GPIO_PDDR & 0XFFFFFF6F;
GPIO_PDDR = GPIO_PDDR|0x00000090;
Transcribed Image Text:Which C statement sets bit7 and bit 4 in the GPIO_PDDR register to 0 and leaves the other bits unchanged. GPIOP_PDDR &= 0XFFFFFF5F; GPIO_PDDR = OXFFFFFF6F; GPIO_PDDR = GPIO_PDDR & 0XFFFFFF6F; GPIO_PDDR = GPIO_PDDR|0x00000090;
Expert Solution
Explanation

1) We are required to set bit 7 and bit 4 to 0 others unchanged

2) Bit position 0 to 7 comes in comes in first byte(LSB),

  • To set bit postion 7 to 4 to 0 we need to update first byte as 01101111  = 0x6F
  • AND(&) Operation can be performed with GPIO_PDDR with last bytes as 6F.
    • AND with 1 will not change the value of other parameter bit postion
    • AND with 0 will set value of other parameter bit postion to 0

3)  For other bytes to remain unchanged with AND operation we can set all bytes as FF.

  • So we have FFFFFF6F that needs to AND with GPIO_PDDR

4)  So correct option is GPIO_PDDR = GPIO_PDDR&FFFFFF6F

 

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY