You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
306 B

11 months ago
  1. #include "helloWorld.h"
  2. uint8_t Jill = 0x00;
  3. uint8_t Jung = 0xFF;
  4. uint8_t Jukk = 0x00;
  5. int8_t do_bit_man(int8_t position)
  6. {
  7. if( ( position < 0 ) || ( position > 7 ) )
  8. {
  9. //position should be 0 to 7. Because we are going to modify 8 bit value.
  10. return -1;
  11. }
  12. return 0;
  13. }