Please type all homework and homework assigned this lesson is due at the beginning of class next lesson.
Integrity: Your honor is extremely important. This academic security policy is designed to help you succeed in meeting academic requirements while practicing the honorable behavior our country rightfully demands of its military. Do not compromise your integrity by violating academic security or by taking unfair advantage of your classmates.
volatile
on a variable like: volatile uint8_t bob;
?#define bob 10
not a good thing to do? Hint: it is better to do: const uint8_t bob = 10;
, but why?int8_t a
, how do I do that in C?int8_t b
, how do I do that in C?