Main Page | Modules | File List | Globals

External_Access


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.


Function Documentation

int1 hemisson_ext_read_PINB0 void   ) 
 

Read input PORTB.0.

Parameters:
None 
Return values:
int1 input value (0 or 1)

Definition at line 408 of file hemisson.h.

References PIN_B0.

00409 {
00410    return input(PIN_B0);
00411 }

int1 hemisson_ext_read_PINB6 void   ) 
 

Read input PORTB.6.

Parameters:
None 
Return values:
int1 input value (0 or 1)

Definition at line 419 of file hemisson.h.

References PIN_B6.

00420 {
00421    return input(PIN_B6);
00422 }

int1 hemisson_ext_read_PINB7 void   ) 
 

Read input PORTB.7.

Parameters:
None 
Return values:
int1 input value (0 or 1)

Definition at line 430 of file hemisson.h.

References PIN_B7.

00431 {
00432    return input(PIN_B7);
00433 }

void hemisson_ext_write_PINB0 int1  Bit  ) 
 

Write output PORTB.0.

Parameters:
int1 Value to write (0 or 1)
Return values:
None 

Definition at line 441 of file hemisson.h.

References PIN_B0.

00442 {
00443    output_bit(PIN_B0,bit);
00444 }

void hemisson_ext_write_PINB6 int1  Bit  ) 
 

Write output PORTB.6.

Parameters:
int1 Value to write (0 or 1)
Return values:
None 

Definition at line 452 of file hemisson.h.

References PIN_B6.

00453 {
00454    output_bit(PIN_B6,bit);
00455 }

void hemisson_ext_write_PINB7 int1  Bit  ) 
 

Write output PORTB.7.

Parameters:
int1 Value to write (0 or 1)
Return values:
None 

Definition at line 463 of file hemisson.h.

References PIN_B7.

00464 {
00465    output_bit(PIN_B7,bit);
00466 }


Generated on Mon Feb 23 23:53:24 2004 for HemiOs by doxygen 1.3.4