Mình cần kết nối với trụ bơm Tatsuno, đây là giao thức kết nối
(1) Interface Standard; Confirmed to RS-485 of EIA standard.
(2) Synchronous Method; Asynchronous
(3) Transmission Speed; 19,200 BPS
(4) Transmission Method; Half Duplex
(5) Transmission Procedure; Control Procedure.(polling/selecting method)
(6) Parity Check; Horizontal(even),Vertical(even)Parity Check.
(7) Correction; Automatic.(ACK-NAK Method)
(8) Code; ASCII Code
(9) Composition of One Character; 11 Bit. [Start bit] [b0] [b1] [b2] [b3] [b4] [b5] [b6] [b7] [Parity bit] [Stop bit]
Đây là lệnh ENQ Sequence:
[EOT] [S A] [U A] [ENQ]
Trong đó:
EOT: 04
SA: Station Address Device No.(40H~7FH) which is assigned to each Dispensing Pump
UA: Unit Address 41H : Selecting 51H : Polling
ENQ: 05
Mình thực hiện gửi lệnh qua cho thiết bị bằng mã code ASCII như sau:
Gửi cho thiết bị có địa chỉ 01 với hình thức Polling(51H)
static const uint8_t MessageInABottle[] = {0x04, 0x30, 0x31, 0x35, 0x31, 0x05};
0x04 : EOT
0x30: 0
0x31: 1
0x35: 5
0x31: 1
0x05: ENQ
nhưng không có phản hồi từ thiết bị.
Ai có thế giúp mình.
Thanks
(1) Interface Standard; Confirmed to RS-485 of EIA standard.
(2) Synchronous Method; Asynchronous
(3) Transmission Speed; 19,200 BPS
(4) Transmission Method; Half Duplex
(5) Transmission Procedure; Control Procedure.(polling/selecting method)
(6) Parity Check; Horizontal(even),Vertical(even)Parity Check.
(7) Correction; Automatic.(ACK-NAK Method)
(8) Code; ASCII Code
(9) Composition of One Character; 11 Bit. [Start bit] [b0] [b1] [b2] [b3] [b4] [b5] [b6] [b7] [Parity bit] [Stop bit]
Đây là lệnh ENQ Sequence:
[EOT] [S A] [U A] [ENQ]
Trong đó:
EOT: 04
SA: Station Address Device No.(40H~7FH) which is assigned to each Dispensing Pump
UA: Unit Address 41H : Selecting 51H : Polling
ENQ: 05
Mình thực hiện gửi lệnh qua cho thiết bị bằng mã code ASCII như sau:
Gửi cho thiết bị có địa chỉ 01 với hình thức Polling(51H)
static const uint8_t MessageInABottle[] = {0x04, 0x30, 0x31, 0x35, 0x31, 0x05};
0x04 : EOT
0x30: 0
0x31: 1
0x35: 5
0x31: 1
0x05: ENQ
nhưng không có phản hồi từ thiết bị.
Ai có thế giúp mình.
Thanks
Comment