Hi I am trying to control a SoundWeb audio DSP through it's rear RS232 port. I have written code for the PAC to test the communications and the protocol (or rather, my understanding of it). I have connected the PAC to C-Bus (duh) and I have connected the power required for the serial communications - a single, wire-wound 220V-24V 12VA transformer. (Why this is required still puzzles me). Anyway, the voltage measures accurate and when I run the logic through my laptop (connected through a USB-Com converter) I get the desired response. However, the PAC sends no serial commands. I have checked this with Hyperterminal as well as other com port spy programs. I have connected the laptop through a 3-wire Null modem cable to make sure that the problem is not with flow control or handshaking. I have tried changing control to port 2, then back to 1, but nothing seems to persuade the PAC to start serialing. I have used 2 different cables, a 8-wire null modem and a 3-wire null modem with the pinouts as in the little booklet. Please help. *************************** PS: the testing code- {Enter Initialisation code here} OpenSerial(1, 1, 38400, 8, 1, 0, 0); EnableModule(0); EnableModule(1); {Sets PC Vol to 0dB} once (GetLightingState("Hall1HiBays") = ON) then begin {Starts transmission} WriteSerial(1,#2#132); {Set Handle} WriteSerial(1,#0#0#0#67); {Set Method} WriteSerial(1,#1#0#8#5); {Set Value (0dB)} WriteSerial(1,#0#0); {Set Checksum byte} WriteSerial(1,#203); {Ends transmission} WriteSerial(1,#3); end; {Sets PC Vol to -40dB} once (GetLightingState("Hall1HiBays") = OFF) then begin {Starts transmission} WriteSerial(1,#2#132); {Set Handle} WriteSerial(1,#0#0#0#67); {Set Method} WriteSerial(1,#1#0#8#5); {Set Value (-40dB)} WriteSerial(1,#216#0); {Set Checksum byte} WriteSerial(1,#19); {Ends transmission} WriteSerial(1,#3); end;