Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. # Embedded Firmware Engineering questions
  2. 1. What happens to a bit that is 'shifted out'?
  3. 1. `0b00000001 >> 1` - where does the 1 go?
  4. 1. It doesn't 'go' anywhere, it just becomes a 0. 0 and 1 are just voltage states. When we shift, the state transitions based on the state of the from position. In this case there is no destination, so shifting just clears the bit.
  5. 1. Islands problem
  6. 1. Are Parens necessary when shifting/casting?
  7. 1. I go overboard with the number of parens. SOme see it is as unecessary and confusing. I would rather be explicit than rely on my knowledge of c order of operations
  8. 1. What are the connection params?
  9. 1. What function does Supervisory Timeout perform?
  10. 1. What does the MTU define
  11. 1. Design an event driven fifo read with 2 levels of abstraction
  12. 1. What happens when you dereference a null pointer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement