Question
The objective of this system is to implement an odd-bit detection system. There are three bits of inputs and one bit of output. The output
The objective of this system is to implement an odd-bit detection system. There are three bits of inputs and one bit of output. The output is in positive logic: outputing a 1 will turn on the LED, outputing a 0 will turn off the LED. Inputs are positive logic: meaning if the switch pressed is the input is 1, if the switch is not pressed the input is 0. PE0 is an input PE1 is an input PE2 is an input PB4 is the output The specific operation of this system Initialize Port E to make PE0,PE1,PE2 inputs and PB4 an output Over and over, read the inputs, calculate the result and set the output The input/output specification refers to the input, not the switch. The following table illustrates the expected behavior relative to output PB4 as a function of inputs PE0,PE1,PE2 PE2 PE1 PE0 PB4 0 0 0 0 even number of 1s 0 0 1 1 odd number of 1s 0 1 0 1 odd number of 1s 0 1 1 0 even number of 1s 1 0 0 1 odd number of 1s 1 0 1 0 even number of 1s 1 1 0 0 even number of 1s 1 1 1 1 odd number of 1s */ // NOTE: Do not use any conditional branches in your solution. // We want you to think of the solution in terms of logical and shift operations
hOW TO DO THIS IN c
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started