rme96xx
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:24k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Beta release of the rme96xx (driver for RME 96XX cards like the 
  2. "Hammerfall" and the "Hammerfall light") 
  3. Important: The driver module has to be installed on a freshly rebooted system, 
  4. otherwise the driver might not be able to acquire its buffers.
  5. features:
  6.  - OSS programming interface (i.e. runs with standard OSS soundsoftware) 
  7.  - OSS/Multichannel interface (OSS multichannel is done by just aquiring
  8.    more than 2 channels). The driver does not use more than one device 
  9.    ( yet .. this feature may be implemented later ) 
  10.  - more than one RME card supported
  11. The driver uses a specific multichannel interface, which I will document
  12. when the driver gets stable. (take a look at the defines in rme96xx.h,
  13. which adds blocked multichannel formats i.e instead of 
  14. lrlrlrlr --> llllrrrr  etc.
  15. Use the "rmectrl" programm to look at the status of the card .. 
  16. or use xrmectrl, a GUI interface for the ctrl program.
  17. What you can do with the rmectrl program is to set the stereo device for
  18. OSS emulation (e.g. if you use SPDIF out).
  19. You do:
  20. ./ctrl offset 24 24
  21. which makes the stereo device use channels 25 and 26.
  22. Guenter Geiger <geiger@epy.co.at> 
  23.                
  24. copy the first part of the attached source code into rmectrl.c
  25. and the  second part into xrmectrl (or get the program from
  26. http://gige.xdv.org/pages/soft/pages/rme)
  27. to compile: gcc -o rmectrl rmectrl.c
  28. ------------------------------ snip ------------------------------------
  29.  
  30. #include <stdio.h>
  31. #include <sys/types.h>
  32. #include <sys/stat.h>
  33. #include <sys/ioctl.h>
  34. #include <fcntl.h>
  35. #include <linux/soundcard.h>
  36. #include <math.h>
  37. #include <unistd.h>
  38. #include <stdlib.h>
  39. #include "rme96xx.h"
  40. /*
  41.   remctrl.c
  42.   (C) 2000 Guenter Geiger <geiger@debian.org>
  43.   HP20020201 - Heiko Purnhagen <purnhage@tnt.uni-hannover.de>
  44. */
  45. /* # define DEVICE_NAME "/dev/mixer" */
  46. # define DEVICE_NAME "/dev/mixer1"
  47. void usage(void)
  48. {
  49.      fprintf(stderr,"usage: rmectrl [/dev/mixer<n>] [command [options]]nn");
  50.      fprintf(stderr,"where command is one of:n");
  51.      fprintf(stderr,"  help                       show this helpn");
  52.      fprintf(stderr,"  status                     show status bitsn");
  53.      fprintf(stderr,"  control                    show control bitsn");
  54.      fprintf(stderr,"  mix                        show mixer/offset statusn");
  55.      fprintf(stderr,"  master <n>                 set sync mastern");
  56.      fprintf(stderr,"  pro <n>                    set spdif out pron");
  57.      fprintf(stderr,"  emphasis <n>               set spdif out emphasisn");
  58.      fprintf(stderr,"  dolby <n>                  set spdif out no audion");
  59.      fprintf(stderr,"  optout <n>                 set spdif out opticaln");
  60.      fprintf(stderr,"  wordclock <n>              set sync wordclockn");
  61.      fprintf(stderr,"  spdifin <n>                set spdif in (0=optical,1=coax,2=intern)n");
  62.      fprintf(stderr,"  syncref <n>                set sync source (0=ADAT1,1=ADAT2,2=ADAT3,3=SPDIF)n");
  63.      fprintf(stderr,"  adat1cd <n>                set ADAT1 on internal CDn");
  64.      fprintf(stderr,"  offset <devnr> <in> <out>  set dev (0..3) offset (0..25)n");
  65.      exit(-1);
  66. }
  67. int main(int argc, char* argv[])
  68. {
  69.      int cards;
  70.      int ret;
  71.      int i;
  72.      double ft;
  73.      int fd, fdwr;
  74.      int param,orig;
  75.      rme_status_t stat;
  76.      rme_ctrl_t ctrl;
  77.      char *device;
  78.      int argidx;
  79.      if (argc < 2)
  80.   usage();
  81.      if (*argv[1]=='/') {
  82.   device = argv[1];
  83.   argidx = 2;
  84.      }
  85.      else {
  86.   device = DEVICE_NAME;
  87.   argidx = 1;
  88.      }
  89.      fprintf(stdout,"mixer device %sn",device);
  90.      if ((fd = open(device,O_RDONLY)) < 0) {
  91.   fprintf(stdout,"opening device failedn");
  92.   exit(-1);
  93.      }
  94.      if ((fdwr = open(device,O_WRONLY)) < 0) {
  95.   fprintf(stdout,"opening device failedn");
  96.   exit(-1);
  97.      }
  98.      if (argc < argidx+1)
  99.   usage();
  100.   
  101.      if (!strcmp(argv[argidx],"help")) 
  102.         usage();
  103.      if (!strcmp(argv[argidx],"-h")) 
  104.         usage();
  105.      if (!strcmp(argv[argidx],"--help")) 
  106.         usage();
  107.      if (!strcmp(argv[argidx],"status")) {
  108.   ioctl(fd,SOUND_MIXER_PRIVATE2,&stat);
  109.   fprintf(stdout,"stat.irq %dn",stat.irq);
  110.   fprintf(stdout,"stat.lockmask %dn",stat.lockmask);
  111.   fprintf(stdout,"stat.sr48 %dn",stat.sr48);
  112.   fprintf(stdout,"stat.wclock %dn",stat.wclock);
  113.   fprintf(stdout,"stat.bufpoint %dn",stat.bufpoint);
  114.   fprintf(stdout,"stat.syncmask %dn",stat.syncmask);
  115.   fprintf(stdout,"stat.doublespeed %dn",stat.doublespeed);
  116.   fprintf(stdout,"stat.tc_busy %dn",stat.tc_busy);
  117.   fprintf(stdout,"stat.tc_out %dn",stat.tc_out);
  118.   fprintf(stdout,"stat.crystalrate %d (0=64k 3=96k 4=88.2k 5=48k 6=44.1k 7=32k)n",stat.crystalrate);
  119.   fprintf(stdout,"stat.spdif_error %dn",stat.spdif_error);
  120.   fprintf(stdout,"stat.bufid %dn",stat.bufid);
  121.   fprintf(stdout,"stat.tc_valid %dn",stat.tc_valid);
  122.   exit (0);
  123.      }
  124.  
  125.      if (!strcmp(argv[argidx],"control")) {
  126.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  127.   fprintf(stdout,"ctrl.start %dn",ctrl.start);
  128.   fprintf(stdout,"ctrl.latency %d (0=64 .. 7=8192)n",ctrl.latency);
  129.   fprintf(stdout,"ctrl.master %dn",ctrl.master);
  130.   fprintf(stdout,"ctrl.ie %dn",ctrl.ie);
  131.   fprintf(stdout,"ctrl.sr48 %dn",ctrl.sr48);
  132.   fprintf(stdout,"ctrl.spare %dn",ctrl.spare);
  133.   fprintf(stdout,"ctrl.doublespeed %dn",ctrl.doublespeed);
  134.   fprintf(stdout,"ctrl.pro %dn",ctrl.pro);
  135.   fprintf(stdout,"ctrl.emphasis %dn",ctrl.emphasis);
  136.   fprintf(stdout,"ctrl.dolby %dn",ctrl.dolby);
  137.   fprintf(stdout,"ctrl.opt_out %dn",ctrl.opt_out);
  138.   fprintf(stdout,"ctrl.wordclock %dn",ctrl.wordclock);
  139.   fprintf(stdout,"ctrl.spdif_in %d (0=optical,1=coax,2=intern)n",ctrl.spdif_in);
  140.   fprintf(stdout,"ctrl.sync_ref %d (0=ADAT1,1=ADAT2,2=ADAT3,3=SPDIF)n",ctrl.sync_ref);
  141.   fprintf(stdout,"ctrl.spdif_reset %dn",ctrl.spdif_reset);
  142.   fprintf(stdout,"ctrl.spdif_select %dn",ctrl.spdif_select);
  143.   fprintf(stdout,"ctrl.spdif_clock %dn",ctrl.spdif_clock);
  144.   fprintf(stdout,"ctrl.spdif_write %dn",ctrl.spdif_write);
  145.   fprintf(stdout,"ctrl.adat1_cd %dn",ctrl.adat1_cd);
  146.   exit (0);
  147.      }
  148.      
  149.      if (!strcmp(argv[argidx],"mix")) {
  150.   rme_mixer mix;
  151.   int i;
  152.   
  153.   for (i=0; i<4; i++) {
  154.        mix.devnr = i;
  155.        ioctl(fd,SOUND_MIXER_PRIVATE1,&mix);
  156.        if (mix.devnr == i) {
  157.     fprintf(stdout,"devnr %dn",mix.devnr);
  158.     fprintf(stdout,"mix.i_offset %2d (0-25)n",mix.i_offset);
  159.     fprintf(stdout,"mix.o_offset %2d (0-25)n",mix.o_offset);
  160.        }
  161.   }
  162.   exit (0);
  163.      }
  164. /* the control flags */
  165.      if (argc < argidx+2)
  166.   usage();
  167.   
  168.      if (!strcmp(argv[argidx],"master")) {
  169.   int val = atoi(argv[argidx+1]);
  170.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  171.   printf("master = %dn",val);
  172.   ctrl.master = val;
  173.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  174.   exit (0);
  175.      }
  176.      if (!strcmp(argv[argidx],"pro")) {
  177.   int val = atoi(argv[argidx+1]);
  178.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  179.   printf("pro = %dn",val);
  180.   ctrl.pro = val;
  181.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  182.   exit (0);
  183.      }
  184.      if (!strcmp(argv[argidx],"emphasis")) {
  185.   int val = atoi(argv[argidx+1]);
  186.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  187.   printf("emphasis = %dn",val);
  188.   ctrl.emphasis = val;
  189.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  190.   exit (0);
  191.      }
  192.      if (!strcmp(argv[argidx],"dolby")) {
  193.   int val = atoi(argv[argidx+1]);
  194.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  195.   printf("dolby = %dn",val);
  196.   ctrl.dolby = val;
  197.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  198.   exit (0);
  199.      }
  200.      if (!strcmp(argv[argidx],"optout")) {
  201.   int val = atoi(argv[argidx+1]);
  202.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  203.   printf("optout = %dn",val);
  204.   ctrl.opt_out = val;
  205.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  206.   exit (0);
  207.      }
  208.      if (!strcmp(argv[argidx],"wordclock")) {
  209.   int val = atoi(argv[argidx+1]);
  210.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  211.   printf("wordclock = %dn",val);
  212.   ctrl.wordclock = val;
  213.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  214.   exit (0);
  215.      }
  216.      if (!strcmp(argv[argidx],"spdifin")) {
  217.   int val = atoi(argv[argidx+1]);
  218.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  219.   printf("spdifin = %dn",val);
  220.   ctrl.spdif_in = val;
  221.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  222.   exit (0);
  223.      }
  224.      if (!strcmp(argv[argidx],"syncref")) {
  225.   int val = atoi(argv[argidx+1]);
  226.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  227.   printf("syncref = %dn",val);
  228.   ctrl.sync_ref = val;
  229.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  230.   exit (0);
  231.      }
  232.  
  233.      if (!strcmp(argv[argidx],"adat1cd")) {
  234.   int val = atoi(argv[argidx+1]);
  235.   ioctl(fd,SOUND_MIXER_PRIVATE3,&ctrl);
  236.   printf("adat1cd = %dn",val);
  237.   ctrl.adat1_cd = val;
  238.   ioctl(fdwr,SOUND_MIXER_PRIVATE3,&ctrl);
  239.   exit (0);
  240.      }
  241.  
  242. /* setting offset */
  243.      if (argc < argidx+4)
  244.   usage();
  245.   
  246.      if (!strcmp(argv[argidx],"offset")) {
  247.   rme_mixer mix;
  248.   mix.devnr = atoi(argv[argidx+1]);
  249.   
  250.   mix.i_offset = atoi(argv[argidx+2]);
  251.   mix.o_offset = atoi(argv[argidx+3]);
  252.   ioctl(fdwr,SOUND_MIXER_PRIVATE1,&mix);
  253.   fprintf(stdout,"devnr %dn",mix.devnr);
  254.   fprintf(stdout,"mix.i_offset to %dn",mix.i_offset);
  255.   fprintf(stdout,"mix.o_offset to %dn",mix.o_offset);
  256.   exit (0);
  257.      }  
  258.      usage();
  259.      exit (0); /* to avoid warning */
  260. }
  261. ---------------------------- <snip> --------------------------------
  262. #!/usr/bin/wish
  263. # xrmectrl
  264. # (C) 2000 Guenter Geiger <geiger@debian.org>
  265. # HP20020201 - Heiko Purnhagen <purnhage@tnt.uni-hannover.de>
  266. #set defaults "-relief ridged"
  267. set CTRLPROG "./rmectrl"
  268. if {$argc} {
  269.     set CTRLPROG "$CTRLPROG $argv"
  270. }
  271. puts "CTRLPROG $CTRLPROG"
  272. frame .butts
  273. button .butts.exit -text "Exit" -command "exit" -relief ridge
  274. #button .butts.state -text "State" -command "get_all" 
  275. pack .butts.exit -side left 
  276. pack .butts -side bottom 
  277. #
  278. # STATUS 
  279. #
  280. frame .status
  281. # Sampling Rate
  282. frame .status.sr
  283. label .status.sr.text -text "Sampling Rate" -justify left
  284. radiobutton .status.sr.441 -selectcolor red -text "44.1 kHz" -width 10 -anchor nw -variable srate -value 44100 -font times
  285. radiobutton .status.sr.480 -selectcolor red -text "48 kHz" -width 10 -anchor nw -variable srate -value 48000 -font times
  286. radiobutton .status.sr.882 -selectcolor red -text "88.2 kHz" -width 10 -anchor nw -variable srate -value 88200 -font times
  287. radiobutton .status.sr.960 -selectcolor red -text "96 kHz" -width 10 -anchor nw  -variable srate -value 96000 -font times
  288. pack .status.sr.text .status.sr.441 .status.sr.480 .status.sr.882 .status.sr.960 -side top -padx 3
  289. # Lock
  290. frame .status.lock
  291. label .status.lock.text -text "Lock" -justify left
  292. checkbutton .status.lock.adat1 -selectcolor red -text "ADAT1" -anchor nw -width 10 -variable adatlock1 -font times
  293. checkbutton .status.lock.adat2 -selectcolor red -text "ADAT2" -anchor nw -width 10 -variable adatlock2 -font times
  294. checkbutton .status.lock.adat3 -selectcolor red -text "ADAT3" -anchor nw -width 10 -variable adatlock3 -font times
  295. pack .status.lock.text .status.lock.adat1 .status.lock.adat2 .status.lock.adat3 -side top -padx 3 
  296. # Sync
  297. frame .status.sync
  298. label .status.sync.text -text "Sync" -justify left
  299. checkbutton .status.sync.adat1 -selectcolor red -text "ADAT1" -anchor nw -width 10 -variable adatsync1 -font times
  300. checkbutton .status.sync.adat2 -selectcolor red -text "ADAT2" -anchor nw -width 10 -variable adatsync2 -font times
  301. checkbutton .status.sync.adat3 -selectcolor red -text "ADAT3" -anchor nw -width 10 -variable adatsync3 -font times
  302. pack .status.sync.text .status.sync.adat1 .status.sync.adat2 .status.sync.adat3 -side top -padx 3 
  303. # Timecode
  304. frame .status.tc
  305. label .status.tc.text -text "Timecode" -justify left
  306. checkbutton .status.tc.busy -selectcolor red -text "busy" -anchor nw -width 10 -variable tcbusy -font times
  307. checkbutton .status.tc.out -selectcolor red -text "out" -anchor nw -width 10 -variable tcout -font times
  308. checkbutton .status.tc.valid -selectcolor red -text "valid" -anchor nw -width 10 -variable tcvalid -font times
  309. pack .status.tc.text .status.tc.busy .status.tc.out .status.tc.valid -side top -padx 3 
  310. # SPDIF In
  311. frame .status.spdif
  312. label .status.spdif.text -text "SPDIF In" -justify left
  313. label .status.spdif.sr -text "--.- kHz" -anchor n -width 10 -font times
  314. checkbutton .status.spdif.error -selectcolor red -text "Input Lock" -anchor nw -width 10 -variable spdiferr -font times
  315. pack .status.spdif.text .status.spdif.sr .status.spdif.error -side top -padx 3 
  316. pack .status.sr .status.lock .status.sync .status.tc .status.spdif -side left -fill x -anchor n -expand 1
  317. #
  318. # CONTROL 
  319. #
  320. proc setprof {} {
  321.     global CTRLPROG
  322.     global spprof
  323.     exec $CTRLPROG pro $spprof
  324. }
  325. proc setemph {} {
  326.     global CTRLPROG
  327.     global spemph
  328.     exec $CTRLPROG emphasis $spemph
  329. }
  330. proc setnoaud {} {
  331.     global CTRLPROG
  332.     global spnoaud
  333.     exec $CTRLPROG dolby $spnoaud
  334. }
  335. proc setoptical {} {
  336.     global CTRLPROG
  337.     global spoptical
  338.     exec $CTRLPROG optout $spoptical
  339. }
  340. proc setspdifin {} {
  341.     global CTRLPROG
  342.     global spdifin
  343.     exec $CTRLPROG spdifin [expr $spdifin - 1]
  344. }
  345. proc setsyncsource {} {
  346.     global CTRLPROG
  347.     global syncsource
  348.     exec $CTRLPROG syncref [expr $syncsource -1]
  349. }
  350. proc setmaster {} {
  351.     global CTRLPROG
  352.     global master
  353.     exec $CTRLPROG master $master
  354. }
  355. proc setwordclock {} {
  356.     global CTRLPROG
  357.     global wordclock
  358.     exec $CTRLPROG wordclock $wordclock
  359. }
  360. proc setadat1cd {} {
  361.     global CTRLPROG
  362.     global adat1cd
  363.     exec $CTRLPROG adat1cd $adat1cd
  364. }
  365. frame .control
  366. # SPDIF In & SPDIF Out
  367. frame .control.spdif
  368. frame .control.spdif.in
  369. label .control.spdif.in.text -text "SPDIF In" -justify left
  370. radiobutton .control.spdif.in.input1 -text "Optical" -anchor nw -width 13 -variable spdifin -value 1 -command setspdifin -selectcolor blue -font times
  371. radiobutton .control.spdif.in.input2 -text "Coaxial" -anchor nw -width 13 -variable spdifin -value 2 -command setspdifin -selectcolor blue -font times
  372. radiobutton .control.spdif.in.input3 -text "Intern " -anchor nw -width 13 -variable spdifin -command setspdifin -value 3 -selectcolor blue -font times
  373. checkbutton .control.spdif.in.adat1cd -text "ADAT1 Intern" -anchor nw -width 13 -variable adat1cd -command setadat1cd -selectcolor blue -font times
  374. pack .control.spdif.in.text .control.spdif.in.input1 .control.spdif.in.input2 .control.spdif.in.input3 .control.spdif.in.adat1cd
  375. label .control.spdif.space
  376. frame .control.spdif.out
  377. label .control.spdif.out.text -text "SPDIF Out" -justify left
  378. checkbutton .control.spdif.out.pro -text "Professional" -anchor nw -width 13 -variable spprof -command setprof -selectcolor blue -font times
  379. checkbutton .control.spdif.out.emphasis -text "Emphasis" -anchor nw -width 13 -variable spemph -command setemph -selectcolor blue -font times
  380. checkbutton .control.spdif.out.dolby -text "NoAudio" -anchor nw -width 13 -variable spnoaud -command setnoaud -selectcolor blue -font times
  381. checkbutton .control.spdif.out.optout -text "Optical Out" -anchor nw -width 13 -variable spoptical -command setoptical -selectcolor blue -font times
  382. pack .control.spdif.out.optout .control.spdif.out.dolby .control.spdif.out.emphasis .control.spdif.out.pro .control.spdif.out.text -side bottom
  383. pack .control.spdif.in .control.spdif.space .control.spdif.out -side top -fill y -padx 3 -expand 1
  384. # Sync Mode & Sync Source
  385. frame .control.sync
  386. frame .control.sync.mode
  387. label .control.sync.mode.text -text "Sync Mode" -justify left
  388. checkbutton .control.sync.mode.master -text "Master" -anchor nw -width 13 -variable master -command setmaster -selectcolor blue -font times
  389. checkbutton .control.sync.mode.wc -text "Wordclock" -anchor nw -width 13 -variable wordclock -command setwordclock -selectcolor blue -font times
  390. pack .control.sync.mode.text .control.sync.mode.master .control.sync.mode.wc
  391. label .control.sync.space
  392. frame .control.sync.src
  393. label .control.sync.src.text -text "Sync Source" -justify left
  394. radiobutton .control.sync.src.input1 -text "ADAT1" -anchor nw -width 13 -variable syncsource -value 1 -command setsyncsource -selectcolor blue -font times
  395. radiobutton .control.sync.src.input2 -text "ADAT2" -anchor nw -width 13 -variable syncsource -value 2 -command setsyncsource -selectcolor blue -font times
  396. radiobutton .control.sync.src.input3 -text "ADAT3" -anchor nw -width 13 -variable syncsource -command setsyncsource -value 3 -selectcolor blue -font times
  397. radiobutton .control.sync.src.input4 -text "SPDIF" -anchor nw -width 13 -variable syncsource -command setsyncsource -value 4 -selectcolor blue -font times
  398. pack .control.sync.src.input4 .control.sync.src.input3 .control.sync.src.input2 .control.sync.src.input1 .control.sync.src.text -side bottom
  399. pack .control.sync.mode .control.sync.space .control.sync.src -side top -fill y -padx 3 -expand 1
  400. label .control.space -text "" -width 10
  401. # Buffer Size
  402. frame .control.buf
  403. label .control.buf.text -text "Buffer Size (Latency)" -justify left
  404. radiobutton .control.buf.b1 -selectcolor red -text "64 (1.5 ms)" -width 13 -anchor nw -variable ssrate -value 1 -font times
  405. radiobutton .control.buf.b2 -selectcolor red -text "128 (3 ms)" -width 13 -anchor nw -variable ssrate -value 2 -font times
  406. radiobutton .control.buf.b3 -selectcolor red -text "256 (6 ms)" -width 13 -anchor nw -variable ssrate -value 3 -font times
  407. radiobutton .control.buf.b4 -selectcolor red -text "512 (12 ms)" -width 13 -anchor nw -variable ssrate -value 4 -font times
  408. radiobutton .control.buf.b5 -selectcolor red -text "1024 (23 ms)" -width 13 -anchor nw -variable ssrate -value 5 -font times
  409. radiobutton .control.buf.b6 -selectcolor red -text "2048 (46 ms)" -width 13 -anchor nw -variable ssrate -value 6 -font times
  410. radiobutton .control.buf.b7 -selectcolor red -text "4096 (93 ms)" -width 13 -anchor nw -variable ssrate -value 7 -font times
  411. radiobutton .control.buf.b8 -selectcolor red -text "8192 (186 ms)" -width 13 -anchor nw -variable ssrate -value 8 -font times
  412. pack .control.buf.text .control.buf.b1 .control.buf.b2 .control.buf.b3 .control.buf.b4 .control.buf.b5 .control.buf.b6 .control.buf.b7 .control.buf.b8 -side top -padx 3 
  413. # Offset
  414. frame .control.offset
  415. frame .control.offset.in
  416. label .control.offset.in.text -text "Offset In" -justify left
  417. label .control.offset.in.off0 -text "dev#0: -" -anchor nw -width 10 -font times
  418. label .control.offset.in.off1 -text "dev#1: -" -anchor nw -width 10 -font times
  419. label .control.offset.in.off2 -text "dev#2: -" -anchor nw -width 10 -font times
  420. label .control.offset.in.off3 -text "dev#3: -" -anchor nw -width 10 -font times
  421. pack .control.offset.in.text .control.offset.in.off0 .control.offset.in.off1 .control.offset.in.off2 .control.offset.in.off3
  422. label .control.offset.space
  423. frame .control.offset.out
  424. label .control.offset.out.text -text "Offset Out" -justify left
  425. label .control.offset.out.off0 -text "dev#0: -" -anchor nw -width 10 -font times
  426. label .control.offset.out.off1 -text "dev#1: -" -anchor nw -width 10 -font times
  427. label .control.offset.out.off2 -text "dev#2: -" -anchor nw -width 10 -font times
  428. label .control.offset.out.off3 -text "dev#3: -" -anchor nw -width 10 -font times
  429. pack .control.offset.out.off3 .control.offset.out.off2 .control.offset.out.off1 .control.offset.out.off0 .control.offset.out.text -side bottom
  430. pack .control.offset.in .control.offset.space .control.offset.out -side top -fill y -padx 3 -expand 1
  431. pack .control.spdif .control.sync .control.space .control.buf .control.offset -side left -fill both -anchor n -expand 1
  432. label .statustext -text Status -justify center -relief ridge
  433. label .controltext -text Control -justify center -relief ridge
  434. label .statusspace
  435. label .controlspace
  436. pack .statustext .status .statusspace .controltext .control .controlspace -side top -anchor nw -fill both -expand 1
  437. proc get_bit {output sstr} {
  438.     set idx1 [string last [concat $sstr 1] $output]
  439.     set idx1 [expr $idx1 != -1]
  440.     return $idx1
  441. }
  442. proc get_val {output sstr} {
  443.     set val [string wordend $output [string last $sstr $output]] 
  444.     set val [string range $output $val [expr $val+1]]
  445.     return $val
  446. }
  447. proc get_val2 {output sstr} {
  448.     set val [string wordend $output [string first $sstr $output]] 
  449.     set val [string range $output $val [expr $val+2]]
  450.     return $val
  451. }
  452. proc get_control {} {
  453.     global spprof
  454.     global spemph
  455.     global spnoaud
  456.     global spoptical
  457.     global spdifin
  458.     global ssrate
  459.     global master
  460.     global wordclock
  461.     global syncsource
  462.     global CTRLPROG
  463.     set f [open "| $CTRLPROG control" r+]
  464.     set ooo [read $f 1000]
  465.     close $f
  466. #    puts $ooo
  467.     set spprof [ get_bit $ooo "pro"]
  468.     set spemph [ get_bit $ooo "emphasis"]
  469.     set spnoaud [ get_bit $ooo "dolby"]
  470.     set spoptical [ get_bit $ooo "opt_out"]
  471.     set spdifin [ expr [ get_val $ooo "spdif_in"] + 1]
  472.     set ssrate [ expr [ get_val $ooo "latency"] + 1]
  473.     set master [ expr [ get_val $ooo "master"]]
  474.     set wordclock [ expr [ get_val $ooo "wordclock"]]
  475.     set syncsource [ expr [ get_val $ooo "sync_ref"] + 1]
  476. }
  477. proc get_status {} {
  478.     global srate
  479.     global ctrlcom
  480.     
  481.     global adatlock1
  482.     global adatlock2
  483.     global adatlock3
  484.     global adatsync1
  485.     global adatsync2
  486.     global adatsync3
  487.     global tcbusy
  488.     global tcout
  489.     global tcvalid
  490.     global spdiferr
  491.     global crystal
  492.     global .status.spdif.text
  493.     global CTRLPROG
  494.     set f [open "| $CTRLPROG status" r+]
  495.     set ooo [read $f 1000]
  496.     close $f
  497. #    puts $ooo
  498.  
  499. # samplerate
  500.     set idx1 [string last "sr48 1" $ooo]
  501.     set idx2 [string last "doublespeed 1" $ooo]
  502.     if {$idx1 >= 0} {
  503. set fact1 48000
  504.     } else {
  505. set fact1 44100
  506.     }
  507.     
  508.     if {$idx2 >= 0} {
  509. set fact2 2 
  510.     } else {
  511. set fact2 1 
  512.     }
  513.     set srate [expr $fact1 * $fact2]
  514. #   ADAT lock 
  515.     set val [get_val $ooo lockmask]
  516.     set adatlock1 0
  517.     set adatlock2 0
  518.     set adatlock3 0
  519.     if {[expr $val & 1]} {
  520.        set adatlock3 1
  521.     } 
  522.     if {[expr $val & 2]} {
  523.        set adatlock2 1
  524.     } 
  525.     if {[expr $val & 4]} {
  526.        set adatlock1 1
  527.     } 
  528. #  ADAT sync
  529.     set val [get_val $ooo syncmask]
  530.     set adatsync1 0
  531.     set adatsync2 0
  532.     set adatsync3 0
  533.     if {[expr $val & 1]} {
  534.        set adatsync3 1
  535.     } 
  536.     if {[expr $val & 2]} {
  537.        set adatsync2 1
  538.     } 
  539.     if {[expr $val & 4]} {
  540.        set adatsync1 1
  541.     } 
  542. # TC busy
  543.     set tcbusy [get_bit $ooo "busy"]
  544.     set tcout [get_bit $ooo "out"]
  545.     set tcvalid [get_bit $ooo "valid"]
  546.     set spdiferr [expr [get_bit $ooo "spdif_error"] == 0]
  547. #  000=64kHz, 100=88.2kHz, 011=96kHz  
  548. #  111=32kHz, 110=44.1kHz, 101=48kHz
  549.     set val [get_val $ooo crystalrate] 
  550.     set crystal "--.- kHz"
  551.     if {$val == 0} {
  552.         set crystal "64 kHz"
  553.     }
  554.     if {$val == 4} {
  555.         set crystal "88.2 kHz"
  556.     }
  557.     if {$val == 3} {
  558.         set crystal "96 kHz"
  559.     }
  560.     if {$val == 7} {
  561.         set crystal "32 kHz"
  562.     }
  563.     if {$val == 6} {
  564.         set crystal "44.1 kHz"
  565.     }
  566.     if {$val == 5} {
  567.         set crystal "48 kHz"
  568.     }
  569.     .status.spdif.sr configure -text $crystal
  570. }
  571. proc get_offset {} {
  572.     global inoffset
  573.     global outoffset
  574.     global CTRLPROG
  575.     set f [open "| $CTRLPROG mix" r+]
  576.     set ooo [read $f 1000]
  577.     close $f
  578. #    puts $ooo
  579.     if { [string match "*devnr*" $ooo] } {
  580. set ooo [string range $ooo [string wordend $ooo [string first devnr $ooo]] end]
  581. set val [get_val2 $ooo i_offset] 
  582. .control.offset.in.off0 configure -text "dev#0: $val"
  583. set val [get_val2 $ooo o_offset] 
  584. .control.offset.out.off0 configure -text "dev#0: $val"
  585.     } else {
  586. .control.offset.in.off0 configure -text "dev#0: -"
  587. .control.offset.out.off0 configure -text "dev#0: -"
  588.     }
  589.     if { [string match "*devnr*" $ooo] } {
  590. set ooo [string range $ooo [string wordend $ooo [string first devnr $ooo]] end]
  591. set val [get_val2 $ooo i_offset] 
  592. .control.offset.in.off1 configure -text "dev#1: $val"
  593. set val [get_val2 $ooo o_offset] 
  594. .control.offset.out.off1 configure -text "dev#1: $val"
  595.     } else {
  596. .control.offset.in.off1 configure -text "dev#1: -"
  597. .control.offset.out.off1 configure -text "dev#1: -"
  598.     }
  599.     if { [string match "*devnr*" $ooo] } {
  600. set ooo [string range $ooo [string wordend $ooo [string first devnr $ooo]] end]
  601. set val [get_val2 $ooo i_offset] 
  602. .control.offset.in.off2 configure -text "dev#2: $val"
  603. set val [get_val2 $ooo o_offset] 
  604. .control.offset.out.off2 configure -text "dev#2: $val"
  605.     } else {
  606. .control.offset.in.off2 configure -text "dev#2: -"
  607. .control.offset.out.off2 configure -text "dev#2: -"
  608.     }
  609.     if { [string match "*devnr*" $ooo] } {
  610. set ooo [string range $ooo [string wordend $ooo [string first devnr $ooo]] end]
  611. set val [get_val2 $ooo i_offset] 
  612. .control.offset.in.off3 configure -text "dev#3: $val"
  613. set val [get_val2 $ooo o_offset] 
  614. .control.offset.out.off3 configure -text "dev#3: $val"
  615.     } else {
  616. .control.offset.in.off3 configure -text "dev#3: -"
  617. .control.offset.out.off3 configure -text "dev#3: -"
  618.     }
  619. }
  620. proc get_all {} {
  621. get_status
  622. get_control
  623. get_offset
  624. }
  625. # main
  626. while {1} {
  627.   after 200 
  628.   get_all
  629.   update
  630. }