Computers & Internet Logo

Related Topics:

A
Anonymous Posted on Oct 16, 2013

M-ORD VIOL - Computers & Internet

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

De printer vraagt cartridge, ik versta niet wat hij bedoelt?

Hi
This is an english site, if ou can explain me the situation in english i'll help you :)
0helpful
1answer

Need to know what iI orded on may the 16

Robert Acton, I checked at the Amazon web site. They do not sell the item #HT8645300 you mention. Perhaps they sent you a purchase order or a contact number.
0helpful
1answer

My sony viol ltop is infected with trojan horse virus

Then use your antivirus and malware scanners.
If you dont have any, try.
AVG9 Free or microsoft security essentials
Plus Malwarebytes antimalware (free version)
Your best running the scans in safe mode ( F8) also turn off your system restore when you scan, you can turn it back on when the scans finish.
2helpful
6answers

Can emc ax150 work without the UPS cable?

I moved my AX-150 to a location that would not allow me to install the UPS as it has redundant power/UPS and you should not connect a UPS to the output of another UPS.

Without the UPS the AX-150 forces the Write Cache to be Disabled. Performance drops, form what I have tested, to around 25x slower. This is due to not just turning off the controllers write cache, but as with ALL RAID controllers, the onboard drive 8/16M write cache is disabled as well so the drives are even slower then they would be if they where not used on a RAID controller.

The write cache disable is your real killer! Actually the write cache is disabled one a week while the REQUIRED battery test is performed.

My solution was to write an APC SmartUPS Serial Emulator that talks to the AX-150 telling it that the UPS is working fine so the write cache never gets turned off, including during the weekly battery test!

Here is the needed RJ45 to DB9F. Colors are base on someone cutting off the end of a cat5 patch cable.

112a180.jpg

You can find the APC SmartUPS commands off the web.


Communications capture:

Normal Comms from/to AX-150

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>


!!! Weekly Batt Test Time !!!!!

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>
Y >>
SM<0D><0A>
W >> !! Tests battery, like pushing the test button on the front panel
OK<0D><0A>
R >>
BYE<0D><0A>
Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>
Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
X >> !! Self-test results
OK<0D><0A>
l >> !! Low transfer voltage
097<0D><0A>
R >>
BYE<0D><0A>



Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>
Y >>
SM<0D><0A>
n >> !! Get Serial number
AS0632112344<00><0D><0A>
R >>
BYE<0D><0A>


!!! End of Test !!!


Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>

Y >>
SM<0D><0A>
Q >>
08<0D><0A>
f >>
100.0<0D><0A>
R >>
BYE<0D><0A>


I would be happy to share the Delphi source and EXE with anyone that would like to use it. Do not see a place to attach files here.

Can give you snapshot of main command-response logic:

if Result = pmerGood then
begin
tRx := Engine.RxString;

if cbHex.Checked then
Msg(Engine.SeeBytes(tRx)+ ' >> ' + #$0D + #$0A)
else
Msg(Engine.SeeChars(tRx)+ ' >> ' + #$0D + #$0A);

PendingCmd := '';
Engine.CharDelay := 0;

CmdData := 'NA' + #$0D + #$0A;
if length(tRx) > 0 then
case ord(tRx[1]) of
$01 : CmdData := 'Smart-UPS 750 RM' + #$0D + #$0A;
$1A : CmdData := '#uD43127130133136uA43108110112114uI43253257261265uM432252292' + '33237lD43106103100097lA43092090088086lI43208204200196lM43182178174170e47200153045607590oD13120oA13100oI33230240220oM13208s431HMLq4820205081114172023p483090180270360450540630000k4310TNr483000060120180240300360420E443336168ON OFF' + #$0D + #$0A;
ord('A') : CmdData := 'OK' + #$0D + #$0A;
ord('B') : CmdData := '27.40' + #$0D + #$0A;
ord('C') : CmdData := '016.2' + #$0D + #$0A;
ord('D') : begin CmdData := '!!!$'; Engine.CharDelay := 600; end;
ord('E') : CmdData := '336' + #$0D + #$0A;
ord('F') : CmdData := '60.00' + #$0D + #$0A;
ord('G') : CmdData := 'S' + #$0D + #$0A;
ord('I') : CmdData := 'FF' + #$0D + #$0A;
ord('J') : CmdData := '0F,00' + #$0D + #$0A;
ord('K') : CmdData := 'OK' + #$0D + #$0A;
ord('L') : CmdData := '126.7' + #$0D + #$0A;
ord('M') : CmdData := '128.1' + #$0D + #$0A;
ord('N') : CmdData := '125.2' + #$0D + #$0A;
ord('O') : CmdData := '113.0' + #$0D + #$0A;
ord('P') : CmdData := '000.0' + #$0D + #$0A;
ord('Q') : CmdData := '08' + #$0D + #$0A;
ord('R') : CmdData := 'BYE' + #$0D + #$0A;
ord('S') : CmdData := 'OK' + #$0D + #$0A;
ord('U') : begin CmdData := '!!!$'; Engine.CharDelay := 600; end;
ord('V') : CmdData := 'FWD' + #$0D + #$0A;
ord('W') : CmdData := 'OK' + #$0D + #$0A;
ord('X') : CmdData := 'OK' + #$0D + #$0A;
ord('Y') : CmdData := 'SM' + #$0D + #$0A;
ord('a') : CmdData := '3.!$%+?=#|.' + #$01 + #$0E + #$1A + ''')+-89>@ABCDEFGKLMNOPQRSUVWXYZabcefgjklmnopqrsuxyz~' + #$0D + #$0A;
ord('b') : CmdData := '615.3.D' + #$0D + #$0A;
ord('c') : CmdData := 'UPS_IDEN' + #$0D + #$0A;
ord('e') : CmdData := '00' + #$0D + #$0A;
ord('g') : CmdData := '024' + #$0D + #$0A;
ord('f') : CmdData := '100.0' + #$0D + #$0A;
ord('i') : CmdData := 'FWD' + #$0D + #$0A;
ord('j') : CmdData := '0375:' + #$0D + #$0A;
ord('k') : CmdData := '0' + #$0D + #$0A;
ord('l') : CmdData := '097' + #$0D + #$0A;
ord('m') : CmdData := '08/03/06' + #$0D + #$0A;
ord('n') : CmdData := 'AS0632112344' + #$00 + #$0D + #$0A;
ord('o') : CmdData := '120' + #$0D + #$0A;
ord('p') : CmdData := '090' + #$0D + #$0A;
ord('q') : CmdData := '02' + #$0D + #$0A;
ord('r') : CmdData := '000' + #$0D + #$0A;
ord('s') : CmdData := 'H' + #$0D + #$0A;
ord('u') : CmdData := '127' + #$0D + #$0A;
ord('x') : CmdData := '01/01/10' + #$0D + #$0A;
ord('y') : CmdData := '(C) APCC' + #$0D + #$0A;
ord('z') : CmdData := 'CLEAR' + #$0D + #$0A;
ord('9') : CmdData := 'FF' + #$0D + #$0A;
end;


if CmdData <> '' then
begin
if cbHex.Checked then
Msg(Engine.SeeBytes(CmdData)+ #$0D + #$0A)
else
Msg(Engine.SeeChars(CmdData)+ #$0D + #$0A);

Engine.SendMsg := CmdData;
end;


Bob A. Hay




0helpful
1answer

Durning an electrical storm the ups shu toof and now does not work is there a switch or fuse that needs to be replaced vern

No electronic equipment should be uswd during electrical storms. There is always a fuse at the back of the device. Unscrew it and check the glass viol for a broken wire inside. If yes, then replace it with the same specification viol. If not then the damage is serious and needs professional help.
0helpful
3answers

My suond sesitm not working

My Sound Driver is not working. What am I do for this. It has Realtek drivers. If you can send me it.
0helpful
1answer

Re: Sony KDF -E60A20

Check out following Sony web link. It might help you.

http://www.iq.sony.com/SRVS/CGI-BIN/WEBCGI.EXE?New,Kb=CISCV3,Company={46BFA530-E01F-4F7C-B98B-69C2AA06051B},Case=Obj(88962),TS=externalv4,T=case.tem,VARSET_MODELNUM=KDFE60A20,VARSET_OBJ=88962,VARSET_TOP=TRUE,workstage=all,question=ref(QC):ord(1),question=ref(QB):ord(1)
Not finding what you are looking for?

24 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...