1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
* Copyright (C) 2004 Steve Harris
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* $Id: controller.c,v 1.2 2004/03/11 19:01:00 theno23 Exp $
*/
#include <stdio.h>
#include <dssi.h>
int main()
{
int controller = DSSI_NONE;
if (DSSI_CONTROLLER_IS_SET(controller)) {
printf("DSSI_IS_SET failed %s:%d\n", __FILE__, __LINE__);
return 1;
}
controller = DSSI_CC(23);
if (!DSSI_IS_CC(controller)) {
printf("DSSI_IS_CC failed %s:%d\n", __FILE__, __LINE__);
return 1;
}
if (DSSI_CC_NUMBER(controller) != 23) {
printf("DSSI_CC_NUMBER failed (%d != 23) %s:%d\n",
DSSI_CC_NUMBER(controller), __FILE__, __LINE__);
return 1;
}
controller |= DSSI_NRPN(1069);
if (!DSSI_IS_CC(controller)) {
printf("DSSI_IS_CC failed %s:%d\n", __FILE__, __LINE__);
return 1;
}
if (DSSI_CC_NUMBER(controller) != 23) {
printf("DSSI_CC_NUMBER failed %s:%d\n", __FILE__, __LINE__);
return 1;
}
if (!DSSI_IS_NRPN(controller)) {
printf("DSSI_IS_NRPN failed %s:%d\n", __FILE__, __LINE__);
return 1;
}
if (DSSI_NRPN_NUMBER(controller) != 1069) {
printf("DSSI_NRPN_NUMBER failed (%d != 1069) %s:%d\n",
DSSI_NRPN_NUMBER(controller), __FILE__, __LINE__);
return 1;
}
printf("test passed\n");
return 0;
}
/* vi:set ts=8 sts=4 sw=4: */
|