/* module.h
   --------
   8/3/23
*/

#ifndef module_h
#define module_h

#ifndef FALSE
#define FALSE 0
#define TRUE !FALSE
#endif

#ifndef NULL
#define NULL 0
#endif

#define NUM_PORTS 4
#define STREAMS NUM_PORTS

void tx_command(unsigned int cmd);

#endif
