Macros | Functions

deprecated Laus-Tracker features More...

Macros

#define orientation
 deprecated constant: see kLausTrackerGetSelfOrientation
 
#define X_coordinate_self
 deprecated constant: see kLausTrackerGetSelfX
 
#define Y_coordinate_self
 deprecated constant: see kLausTrackerGetSelfY
 
#define X_coordinate_rival
 deprecated constant: see kLausTrackerGetRivalX
 
#define Y_coordinate_rival
 deprecated constant: see kLausTrackerGetRivalY
 

Functions

void laustracker_request_self (uint8_t request)
 Requests new data for laustracker_self. More...
 
int8_t laustracker_get_self (uint8_t select)
 Returns the last stored value of the masked laustracker_data_self. More...
 
uint8_t laustracker_received_self (void)
 Gets if new data for the variable laustracker_data_self was received. More...
 
uint8_t laustracker_changed_self (void)
 Gets if new data changed the variable laustracker_data_self. changed. More...
 
int8_t laustracker_wait_self (uint8_t select)
 Returns the value of the select variable. changed. More...
 
void laustracker_request_rival (uint8_t request)
 Requests new data for laustracker_rival. More...
 
int8_t laustracker_get_rival (uint8_t select)
 Returns the last stored value of the masked laustracker_data_rival. More...
 
uint8_t laustracker_received_rival (void)
 Gets if new data for the variable laustracker_data_rival was received. More...
 
uint8_t laustracker_changed_rival (void)
 Gets if new data changed the variable laustracker_data_rival. More...
 
int8_t laustracker_wait_rival (uint8_t select)
 

Detailed Description

deprecated Laus-Tracker features

Function Documentation

◆ laustracker_changed_rival()

uint8_t laustracker_changed_rival ( void  )

Gets if new data changed the variable laustracker_data_rival.

Function is deprecated!

See also
lausTracker_changed()

◆ laustracker_changed_self()

uint8_t laustracker_changed_self ( void  )

Gets if new data changed the variable laustracker_data_self. changed.

Function is deprecated!

See also
lausTracker_changed()

◆ laustracker_get_rival()

int8_t laustracker_get_rival ( uint8_t  select)

Returns the last stored value of the masked laustracker_data_rival.

Function is deprecated!

See also
lausTracker_get()

◆ laustracker_get_self()

int8_t laustracker_get_self ( uint8_t  select)

Returns the last stored value of the masked laustracker_data_self.

Function is deprecated!

See also
lausTracker_get()

◆ laustracker_received_rival()

uint8_t laustracker_received_rival ( void  )

Gets if new data for the variable laustracker_data_rival was received.

Function is deprecated!

See also
lausTracker_received()

◆ laustracker_received_self()

uint8_t laustracker_received_self ( void  )

Gets if new data for the variable laustracker_data_self was received.

Function is deprecated!

See also
lausTracker_received()

◆ laustracker_request_rival()

void laustracker_request_rival ( uint8_t  request)

Requests new data for laustracker_rival.

Function is deprecated!

See also
lausTracker_request()

◆ laustracker_request_self()

void laustracker_request_self ( uint8_t  request)

Requests new data for laustracker_self.

Function is deprecated!

See also
lausTracker_request()

◆ laustracker_wait_rival()

int8_t laustracker_wait_rival ( uint8_t  select)

Returns the value of the select variable.

Function is deprecated!

Internal conversion:

int8_t laustracker_wait_rival(uint8_t select)  {

    lausTracker_request(kLausTrackerSelectRival, kRequestWait);
    return lausTracker_get(select);
}
See also
lausTracker_request() and lausTracker_get()

◆ laustracker_wait_self()

int8_t laustracker_wait_self ( uint8_t  select)

Returns the value of the select variable. changed.

Function is deprecated!

Internal conversion:

int8_t laustracker_wait_self(uint8_t select) {

    lausTracker_request(kLausTrackerSelectSelf, kRequestWait);
    return lausTracker_get(select);
}
See also
lausTracker_request() and lausTracker_get()