Skip to content
Snippets Groups Projects
cb_default.h 360 B
#ifndef __CB_DEFAULT_H
#define __CB_DEFAULT_H

#include "commands.h"

/* The cb_default used on the groundStation. This file MUST NOT BE INCLUDED
 * by anything except for commands.c */

/* cb_default used by portable commands.c */
int cb_default(unsigned char * command, int dataLen, modular_structs_t *structs)
{
	    return 0;
}

#endif /* __CB_DEFAULT_H */