/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */

/* akai16x16.h: definitions for Akai Digital Patch Panel */

#ifndef AKAI16x16_H
#define AKAI16x16_H

#define NUM_INPUTS	16	/* number of inputs  */
#define NUM_OUTPUTS	16       /* number of outputs */

#define FILLER		0x01
#define EOS		0x00

#define SELECT_BASE	0xf0
#define ASSIGN_OUTPUT	0x82
#define ASSIGN_INPUT	0x83

#define SET_PATTERN	0x81
#define REQ_PATTERN	0xA0
#define QUERY_OUTPUT	0xA3

#define ACK		0x55

#define AKAI_TIMEOUT	50

#endif /* AKAI16x16_H */


