Home AMX User Forum NetLinx Studio

Tascam DV-D01U help

I will admit I am probably missing something dumb, but this location seems to provide nothing but headaches and I am at my wits end.

Finally convinced this school to upgrade from an old Axcess system to a new Netlinx. Everything is working as it should except the tascam dvd player which I seem to have zero control over, so it leads me to being something so dumb I have overlooked it 100 times.

None of the Send Strings are working. I see the TX light blink. I get notification the string was sent:

Line 413 (11:09:55):: String To [5001:4:1]-[$02,$3E,$53,$4B,$50,$63,$47,$30,$30,$32,$20,$20,$20,$20,$45,$38,]
Line 414 (11:09:55):: String To [5001:4:1]-[$03]

The string is defined in the constants

GOTK2_STR = "$02,$3E,$53,$4B,$50,$63,$47,$30,$30,$32,$20,$20,$20,$20,$45,$38,$03"

And in the program:

PUSH[TP,133] (* CALL TK2 TO PLAY MISSION 1 *)
{
ON[TP,133]
ON[TP,80] (* DVD PLAY BUTTON *)
SEND_STRING DVD,"GOTK2_STR"
SYSTEM_CALL [SWT] 'SWT9' (SWT,6, 9, 1) (* DVD TO TP *)

That is one example of code for this device.

What am I missing? I am sure it'll be double face palm worthy when I'm shown, this is just becoming one of those I need a fresh set of eyes moments. Thanks for taking a look.

Comments

  • Joe HebertJoe Hebert Posts: 2,159
    Where did you set the baud rate for the RS-232 port.
    If you have it under define_start, it needs to be moved to the online event for the comm port.
  • tweekendtweekend Posts: 15
    I have the following under Define Event:

    DATA_EVENT [DVD]

    {
    ONLINE:
    {
    WAIT 60
    {
    SEND_COMMAND DVD,'SET BAUD 9600,N,8,1 485 DISABLE'
    SEND_COMMAND DVD,'HSOFF'
    }
    }
    }

    Joe Hebert wrote: »
    Where did you set the baud rate for the RS-232 port.
    If you have it under define_start, it needs to be moved to the online event for the comm port.
  • Joe HebertJoe Hebert Posts: 2,159
    How about the cable?

    Check out the first 2 Qs in the forum faq:

    http://www.amxforums.com/showthread.php?4085-Forum-FAQs

    BTW - you don't need the wait for the send_command in the online event but it won't hurt anything.
  • tweekendtweekend Posts: 15
    Double Face Palm for sure. Thank you for the extra brain. Bad cable, how did I not check. Tried three different Tascams, with the same issue which kept pushing me to being something I messed up in the programming. How I didn't do the basic and swap a cable first.

    Thank you very much, I needed a fresh look. And thank you for the link, booked marked to remind me of the basic checks and for passing on in the future.
  • Joe HebertJoe Hebert Posts: 2,159
    You're welcome.
    Glad you got it working.
Sign In or Register to comment.