D_ALERT
MLE_UNITDATA_IND의 파라미터인 SDU의 내용을 Decoding하였을 때 PDU Type이 “0” 이 었을 경우 생성
TETRA SDL을 보면 MLE에서 주는 SDU 데이터는 PC모듈에서 decoding되어, 각 변수에 할당된다. 따라서 decoding 함수는 MLE에서 PC로 메시지가 전달될 때 호출되어야 한다.
• SDU: SDU data와 length 정보를 포함한다
• received TETRA address;
• received address type;
• channel change response required.
D_CALL_PROCEEDING
call set-up이 진행중이라는 것을 알려주는 call set-up요구에 대한 응답 메세지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_CALL_RESTORE
=> D_CALL_RESTORE와 RESTORE_CNF중 어느 것을 사용할지를 검토해야 함.
TETRA SDL(300 392-13)의 경우에는 D_CALL_RESTORE를 사용해서 구현되어 있고, 규격 300 392-2에는 RESTORE_CNF를 사용해야 한다고 기술되어 있다.
• SDU;
• restoration result.
D_CONNECT
호가 완전히 연결되었을 때 사용됨
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_CONNECT_ACK
U_CONNECT에 대한 응답 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_DISCONNECT
단말로 수신된 호 해제 요구 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_INFO
단말로 전달되는 일반적인 정보 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_RELEASE
연결이 해제 되엄을을 단말에게 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_SETUP
단말로 수신된 호 설정 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_CEASED
전송이 중단되었다는 정보를 단말로 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_CONTINUE
호 중단이 해제 되었다는 정보를 단말로 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_GRANTED
전송허가(premission to transmit)가 승인되었음을 알려주는 메시지.
전송요청(request to transmit)이 거절되거나 지연중임을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_INTERRUPT
전송 허가가 철회 되었음을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_WAIT
호가 중단되었다는 사실을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
BREAK_IND
MLE로부터 MLE_BREAK_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
BUSY_IND
MLE로부터 MLE_BUSY_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
CLOSE_IND
MLE로부터 MLE_CLOSE_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
CONFIGURE_IND
파라미터는 MLE_CONFIGURE_IND와 차이가 있음에 주의
MLE_CONFIGURE_IND의 파라미터는 다음과 같다.
• Endpoint identifier
• Channel change response required
• Channel change handle
• Reason for configuration indication
• Conflicting endpoint identifier
• endpoint identifier
• endpoint status
IDLE_IND
MLE로부터 MLE_IDLE_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
INFO_IND
파라미터는 MLE_INFO_IND와 동일
• Broadcast parameters
• Subscriber class match
OPEN_IND
파라미터는 MLE_OPEN_IND와 차이가 있음
MLE_OPEN_IND의 파라미터는 다음과 같다.
MCC (current network)
MNC (current network)
파라미터 없음
REOPEN_IND
MLE로부터 MLE_REOPEN_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
REPORT_IND
파라미터는 MLE_REPORT_IND와 차이가 있음
MLE_REPORT_IND의 파라미터는 다음과 같다.
Handle
Transfer result
Channel change response required
Channel change handle
• transfer result.
RESTORE_CNF
The D-CALL RESTORE PDU should be a SDU in the RESTORE confirm primitive.
MLE_RESTORE_CNF의 파라미터와 차이점은 Handle이 이 RESTORE_CNF 파라미터에서는 사라졌다는 점과 restoration result는 MLE_RESTORE_CNF에 정의 되어 있지 않다는 점이다. 그러면 Handle 값은 PC모듈에서 제거되어 전달되는 것일까? 그리고 resotration result 파라미터는 왜 MLE_RESTORE_CNF에는 정의 되어 있지 않을까?
=> D_CALL_RESTORE와 RESTORE_CNF중 어느 것을 사용할지를 검토해야 함.
TETRA SDL(300 392-13)의 경우에는 D_CALL_RESTORE를 사용해서 구현되어 있고, 규격 300 392-2에는 RESTORE_CNF를 사용해야 한다고 기술되어 있다.
• SDU;
• restoration result.
RESUME_IND
파라미터는 MLE_RESUME_IND와 차이가 있음
MLE_RESUME_IND의 파라미터는 다음과 같다.
• MCC (current network)
• MNC (current network)
파라미터 없음
MLE_UNITDATA_IND의 파라미터인 SDU의 내용을 Decoding하였을 때 PDU Type이 “0” 이 었을 경우 생성
TETRA SDL을 보면 MLE에서 주는 SDU 데이터는 PC모듈에서 decoding되어, 각 변수에 할당된다. 따라서 decoding 함수는 MLE에서 PC로 메시지가 전달될 때 호출되어야 한다.
• SDU: SDU data와 length 정보를 포함한다
• received TETRA address;
• received address type;
• channel change response required.
D_CALL_PROCEEDING
call set-up이 진행중이라는 것을 알려주는 call set-up요구에 대한 응답 메세지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_CALL_RESTORE
=> D_CALL_RESTORE와 RESTORE_CNF중 어느 것을 사용할지를 검토해야 함.
TETRA SDL(300 392-13)의 경우에는 D_CALL_RESTORE를 사용해서 구현되어 있고, 규격 300 392-2에는 RESTORE_CNF를 사용해야 한다고 기술되어 있다.
• SDU;
• restoration result.
D_CONNECT
호가 완전히 연결되었을 때 사용됨
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_CONNECT_ACK
U_CONNECT에 대한 응답 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_DISCONNECT
단말로 수신된 호 해제 요구 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_INFO
단말로 전달되는 일반적인 정보 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_RELEASE
연결이 해제 되엄을을 단말에게 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_SETUP
단말로 수신된 호 설정 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_CEASED
전송이 중단되었다는 정보를 단말로 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_CONTINUE
호 중단이 해제 되었다는 정보를 단말로 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_GRANTED
전송허가(premission to transmit)가 승인되었음을 알려주는 메시지.
전송요청(request to transmit)이 거절되거나 지연중임을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_INTERRUPT
전송 허가가 철회 되었음을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
D_TX_WAIT
호가 중단되었다는 사실을 알려주는 메시지
• SDU
• received TETRA address;
• received address type;
• channel change response required.
BREAK_IND
MLE로부터 MLE_BREAK_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
BUSY_IND
MLE로부터 MLE_BUSY_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
CLOSE_IND
MLE로부터 MLE_CLOSE_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
CONFIGURE_IND
파라미터는 MLE_CONFIGURE_IND와 차이가 있음에 주의
MLE_CONFIGURE_IND의 파라미터는 다음과 같다.
• Endpoint identifier
• Channel change response required
• Channel change handle
• Reason for configuration indication
• Conflicting endpoint identifier
• endpoint identifier
• endpoint status
IDLE_IND
MLE로부터 MLE_IDLE_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
INFO_IND
파라미터는 MLE_INFO_IND와 동일
• Broadcast parameters
• Subscriber class match
OPEN_IND
파라미터는 MLE_OPEN_IND와 차이가 있음
MLE_OPEN_IND의 파라미터는 다음과 같다.
MCC (current network)
MNC (current network)
파라미터 없음
REOPEN_IND
MLE로부터 MLE_REOPEN_IND 수신시 파라미터가 없으므로 파라미터 없음
파라미터 없음
REPORT_IND
파라미터는 MLE_REPORT_IND와 차이가 있음
MLE_REPORT_IND의 파라미터는 다음과 같다.
Handle
Transfer result
Channel change response required
Channel change handle
• transfer result.
RESTORE_CNF
The D-CALL RESTORE PDU should be a SDU in the RESTORE confirm primitive.
MLE_RESTORE_CNF의 파라미터와 차이점은 Handle이 이 RESTORE_CNF 파라미터에서는 사라졌다는 점과 restoration result는 MLE_RESTORE_CNF에 정의 되어 있지 않다는 점이다. 그러면 Handle 값은 PC모듈에서 제거되어 전달되는 것일까? 그리고 resotration result 파라미터는 왜 MLE_RESTORE_CNF에는 정의 되어 있지 않을까?
=> D_CALL_RESTORE와 RESTORE_CNF중 어느 것을 사용할지를 검토해야 함.
TETRA SDL(300 392-13)의 경우에는 D_CALL_RESTORE를 사용해서 구현되어 있고, 규격 300 392-2에는 RESTORE_CNF를 사용해야 한다고 기술되어 있다.
• SDU;
• restoration result.
RESUME_IND
파라미터는 MLE_RESUME_IND와 차이가 있음
MLE_RESUME_IND의 파라미터는 다음과 같다.
• MCC (current network)
• MNC (current network)
파라미터 없음
'Protocol > TETRA' 카테고리의 다른 글
| mp 파일 생성 (0) | 2013.09.25 |
|---|---|
| CC to PC primitive (0) | 2013.09.25 |
| Primitives at TNCC-SAP (0) | 2013.09.25 |
| Primitives at TNCC-SAP MLE to PC (0) | 2013.09.25 |
| Primitives at TNCC-SAP User application to CC (0) | 2013.09.25 |