/****************************************************************************/
/* Copyright 2010 MBARI.                                                    */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/

#ifndef ACTIONS_H
#define ACTIONS_H

/* Root commands */
int actGetCmd(char* s);
int actSetCmd(char* s);
int actClrCmd(char* s);
int actResetCmd(char* s);
int actHelloKittyCmd(char* s);
                                                
/* Get commands */
int actGetDinCmd(char* s);
int actGetDoutCmd(char* s);
int actGetSpiStatsCmd(char* s);
int actGetADCCmd(char* s);

/* Set commands */
int actSetStubCmd(char* s);
int actSetDoutCmd(char* s);
int actSetCSAddCmd(char* s);

/* Clear commands */
int actClrSpiStatsCmd(char* s);
int actClrDoutCmd(char* s);

/* Environ Commands */
void CSAddSet(int address);

#endif
