Critical Link MityCam SoC Firmware  1.0
Critical Link MityCam SoC Firmware
PeekPokeTypes.h File Reference
#include "Types.h"
Include dependency graph for PeekPokeTypes.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  tcIntAccessor
 
class  tcIntSetter
 

Typedefs

typedef int32(tcIntSetter::* IntSetterFunction) (int32)
 
typedef int32(tcIntAccessor::* IntAccessorFunction) (void)
 

Typedef Documentation

◆ IntAccessorFunction

typedef int32(tcIntAccessor::* IntAccessorFunction) (void)

IntAccessorFunction is a member function pointer from a tcIntAccessor object to a getter function which takes no parameters and returns an integer value. This supports PEEK functionality.

Returns
int32 - the value read by the function

◆ IntSetterFunction

typedef int32(tcIntSetter::* IntSetterFunction) (int32)

IntSetterFunction is a member function pointer from a tcIntSetter object to a setter function which takes an in parameter and returns an integer value. This supports POKE functionality.

Parameters
int32- the value to set to the register known by the function
Returns
int32 - 0 if successful, non-zero if error.