|
大家好
我在看PRIME Host Message Protocol Specification這份文件
第59頁中在講GET_INFO(Meaage Type 0x14),然後我想要讀取到裏頭的資訊
然後在第69頁中 我試著學它寫類似的程式碼
MSG_TYP = 0x14; //GET_INFO
MSG_ORG = '1'; //originated from PLC
MSG_RPY = '0'; //need reply message
MSG_BDY = uint16_t blob_id; // blob id to identify the blob
uint16_t blob_len; // length in bytes of blob to read
uint16_t blob_addr; //start address of the blob, only exist when blob_id=4
我不知道用這個程式碼對不對
如果對的話 那這樣寫又是否正確
還有我還需要加甚麼東西在程式碼中
我覺得這個程式碼似乎還不夠完整
|
|