Евгений (Бел)
06.08.2012, 10:08
Подскажите пожалуйста как можно вывести сигнализацию ошибок. У меня например появилась ошибка F5412 в АТС и я хочу чтобы на периферийное устройство приходил звуковой или световой сигнал.К каким портам или платам можно подключить такое или подскажите как это сделать.

Евгений (Бел)
06.08.2012, 15:38
Возможно такое?

OLD_Operator
07.08.2012, 00:45
Как Всякая интеллектуальная система, H-300,HiPath4000, программно обрабатывает различные сообщения поступающие с модулей системы и по предварительно описаным законам (или по умолчанию) и потом делает заключение о принадлежности данного сообщения к классу алармов: Minor Alarm СИД желтый , или Major Alarm красный. Данные релейные "сухие" контакты, данного реле на плате DSCXL, повторяются в паралель с светодиодами, на разъеме ALUM,сзади процессорной полки (МСМ модуль) через кабель-ASW, который заказывается опционально..
Вся система сбора обработки информации о событиях приводящих к возникновению (Аварий ) сконцентрирована в АМО -DIAGS. По умолчанию, например, обрыв цифровика - Minor Alarm, обрыв консоли телефонистки, или обрыв синхронизации по 2-Мб потоку -Major Alarmю Переход с основного питания на батарею-Major Alarm и.т.п. Реле можно использовать для включения по вторичной цепи более мощного ус-ва, например - сирены или мигалки..
Кое чего в оригинале:
1/Просто вывод на консоль телефонистки:
1/Suppose you want to send error message F5455 to the switchboard, the AMO call is:
CHA-SIGNL:TYPE=MID,CD=F,NO=5455,ASD=ATND,CSD=ATND;
2/You also need to do a REGEN-ASSGN:SATIC and make sure you have the following:
CHA-ASSGN:SATIC,ATND,ATND;

2/Пример генерации своей ошибки по PEN уст-ва:
Example of when I would want something like this?
Suppose a customer insists on a very quick response should any of the directors’ phones go
faulty and suppose they are digital phones (naturally, they are directors, aren’t they, they must
have the top of the range).
Normally, when you assign the digital phones ,they are all grouped under the alarm “DIGITAL
DEVICES”, which does not allow you the possibility of identifying whether a director’s phone
has gone faulty
To achieve this customer’s requirement, you could create a personal alarm with the AMO
VADSU. Using AMO SBCSU, you can then group all the directors under this customized
alarm and set it so that one phone going out of service will generate an alarm (e.g. 1% of
phones faulty will generate a major alarm). If there are more phones such that the minimum
threshold results in more than one phone going faulty, you can create several customized
alarms
OK, OK, I get the picture, how do I program it?
You need to decide on the following thresholds
The threshold percentage of faulty devices will generate a minor alarm (VADSU
parameter THRESHD1)
The threshold percentage of faulty devices will generate a major alarm (VADSU
parameter THRESHD2)
You need to decide on two validation times. The alarm will only be signalled once the
validation time expires.
The VADSU parameter TIME1 sets the validation time for a minor alarm.
The VADSU parameter TIME2 sets the validation time for a minor alarm.
You need to decide on the name for the alarm. This name, together with the alarm number,
will be part of the alarm message
Suppose I, your happy technical trainer, decide on the following:
1. Personal alarm number 520
2. Name will be “DIRECTOR GROUP”
3. Minor alarm disabled
4. Major alarm generated if 1% of devices faulty for 5 seconds
5. Extensions 2000 – 2005 assigned to this alarm group
Create the alarm:
ADD-VADSU:ANTYPE=PERS(1),ALARMNO=520(1),THRESHD1=65535 (3),
THRESHD2=1(4),TIME1=0(1),TIME2=5(4),NAME=”DIRECTOR GROUP”(2);
Assign the extensions to the alarm
CHA-SBCSU:STNO=2000&&2005,ALARMNO=520;
You’re at the customer and you see, on the processor card that controls the ADP, either a red
LED or an orange LED or both on. The orange LED indicates a minor alarm and the red LED
indicates a major alarm.
If the error messages ALARMNO=520; are sent to the correct cyclic file on hard disk, you can view what alarms have been set with the following command:STA-HISTA:MIRROR;
In the STA-HISTA:MIRROR display, you see that the alarm 002 is a SWU-LOG alarm. LOG means logical. Armed with this knowledge, you now need to find out what will cause a major
alarm to be set by doing a DIS-VADSU:TYPE=LOGICAL; . Below is an example in picture//