Functions | |
int1 | hemisson_ext_read_PINB0 (void) |
Read input PORTB.0. | |
int1 | hemisson_ext_read_PINB6 (void) |
Read input PORTB.6. | |
int1 | hemisson_ext_read_PINB7 (void) |
Read input PORTB.7. | |
void | hemisson_ext_write_PINB0 (int1 Bit) |
Write output PORTB.0. | |
void | hemisson_ext_write_PINB6 (int1 Bit) |
Write output PORTB.6. | |
void | hemisson_ext_write_PINB7 (int1 Bit) |
Write output PORTB.7. |
|
Read input PORTB.0.
Definition at line 408 of file hemisson.h. References PIN_B0.
00409 {
00410 return input(PIN_B0);
00411 }
|
|
Read input PORTB.6.
Definition at line 419 of file hemisson.h. References PIN_B6.
00420 {
00421 return input(PIN_B6);
00422 }
|
|
Read input PORTB.7.
Definition at line 430 of file hemisson.h. References PIN_B7.
00431 {
00432 return input(PIN_B7);
00433 }
|
|
Write output PORTB.0.
Definition at line 441 of file hemisson.h. References PIN_B0.
00442 { 00443 output_bit(PIN_B0,bit); 00444 } |
|
Write output PORTB.6.
Definition at line 452 of file hemisson.h. References PIN_B6.
00453 { 00454 output_bit(PIN_B6,bit); 00455 } |
|
Write output PORTB.7.
Definition at line 463 of file hemisson.h. References PIN_B7.
00464 { 00465 output_bit(PIN_B7,bit); 00466 } |