bcon.lua 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. function bcon_dissector(buffer, pinfo, tree, BCON_PROTOCOL, offset, tm_len)
  2. -- Define the fields for the protocol based on the structure
  3. local f_bcon_msg = ProtoField.string("BCON_PROTOCOL.bcon_msg", "Bcon Msg")
  4. local f_utc_tim = ProtoField.uint32("BCON_PROTOCOL.utc_tim", "UTC Time", base.DEC)
  5. local f_utc_gps_tim_sts = ProtoField.uint8("BCON_PROTOCOL.utc_gps_tim_sts", "UTC GPS Time Status", base.DEC)
  6. local f_latitude = ProtoField.float("BCON_PROTOCOL.latitude", "Latitude", base.DEC)
  7. local f_longitude = ProtoField.float("BCON_PROTOCOL.longitude", "Longitude", base.DEC)
  8. local f_altitude = ProtoField.float("BCON_PROTOCOL.altitude", "Altitude", base.DEC)
  9. local f_x_pos = ProtoField.double("BCON_PROTOCOL.x_pos", "X Position", base.DEC)
  10. local f_y_pos = ProtoField.double("BCON_PROTOCOL.y_pos", "Y Position", base.DEC)
  11. local f_z_pos = ProtoField.double("BCON_PROTOCOL.z_pos", "Z Position", base.DEC)
  12. local f_x_vel = ProtoField.double("BCON_PROTOCOL.x_vel", "X Velocity", base.DEC)
  13. local f_y_vel = ProtoField.double("BCON_PROTOCOL.y_vel", "Y Velocity", base.DEC)
  14. local f_z_vel = ProtoField.double("BCON_PROTOCOL.z_vel", "Z Velocity", base.DEC)
  15. local f_fsm_state = ProtoField.uint8("BCON_PROTOCOL.fsm_state", "FSM State", base.DEC)
  16. local f_num_resets = ProtoField.uint8("BCON_PROTOCOL.num_resets", "Number of Resets", base.DEC)
  17. local f_zio_err = ProtoField.uint16("BCON_PROTOCOL.zio_err", "ZIO Error", base.DEC)
  18. local f_sys_err = ProtoField.uint8("BCON_PROTOCOL.sys_err", "System Error", base.DEC)
  19. local f_obc_volt_sensor = ProtoField.uint8("BCON_PROTOCOL.obc_volt_sensor", "OBC Volt Sensor", base.DEC)
  20. local f_ps_volt_sensor = ProtoField.uint8("BCON_PROTOCOL.ps_volt_sensor", "PS Volt Sensor", base.DEC)
  21. local f_temp_obc = ProtoField.uint8("BCON_PROTOCOL.temp_obc", "OBC Temperature", base.DEC)
  22. local f_temp_ps = ProtoField.uint8("BCON_PROTOCOL.temp_ps", "PS Temperature", base.DEC)
  23. local f_temp_es = ProtoField.uint8("BCON_PROTOCOL.temp_es", "ES Temperature", base.DEC)
  24. local f_temp_gps = ProtoField.uint8("BCON_PROTOCOL.temp_gps", "GPS Temperature", base.DEC)
  25. local f_totl_btry_volt = ProtoField.uint8("BCON_PROTOCOL.totl_btry_volt", "Total Battery Voltage", base.DEC)
  26. local f_totl_panel_pwr = ProtoField.uint8("BCON_PROTOCOL.totl_panel_pwr", "Total Panel Power", base.DEC)
  27. local f_chnl_sts = ProtoField.uint16("BCON_PROTOCOL.chnl_sts", "Channel Status", base.DEC)
  28. local f_overcrnt_err_flg_byte1 = ProtoField.uint8("BCON_PROTOCOL.overcrnt_err_flg_byte1", "Overcurrent Error Flag Byte1", base.DEC)
  29. local f_overcrnt_err_flg_byte2 = ProtoField.uint16("BCON_PROTOCOL.overcrnt_err_flg_byte2", "Overcurrent Error Flag Byte2", base.DEC)
  30. local f_fsm_state_mode = ProtoField.uint8("BCON_PROTOCOL.fsm_state_mode", "FSM State Mode", base.DEC)
  31. local f_sns_actr_pwr_sts = ProtoField.uint16("BCON_PROTOCOL.sns_actr_pwr_sts", "Sensor Actuator Power Status", base.DEC)
  32. local f_actrs_run_sts = ProtoField.uint8("BCON_PROTOCOL.actrs_run_sts", "Actuators Run Status", base.DEC)
  33. local f_sdr_fsm_st = ProtoField.uint8("BCON_PROTOCOL.sdr_fsm_st", "SDR FSM State", base.DEC)
  34. local f_rssi0 = ProtoField.uint8("BCON_PROTOCOL.rssi0", "RSSI0", base.DEC)
  35. local f_rssi1 = ProtoField.uint8("BCON_PROTOCOL.rssi1", "RSSI1", base.DEC)
  36. local f_rx_err_cnt = ProtoField.uint32("BCON_PROTOCOL.rx_err_cnt", "RX Error Count", base.DEC)
  37. local f_tx_frm_cnt = ProtoField.uint32("BCON_PROTOCOL.tx_frm_cnt", "TX Frame Count", base.DEC)
  38. local f_rx_freq = ProtoField.uint32("BCON_PROTOCOL.rx_freq", "RX Frequency", base.DEC)
  39. local f_symb_freq = ProtoField.uint16("BCON_PROTOCOL.symb_freq", "Symbol Frequency", base.DEC)
  40. local f_mod = ProtoField.uint16("BCON_PROTOCOL.mod", "Modulation", base.DEC)
  41. local f_roll_off = ProtoField.uint16("BCON_PROTOCOL.roll_off", "Roll Off", base.DEC)
  42. local f_rand_enb = ProtoField.uint16("BCON_PROTOCOL.rand_enb", "Random Enable", base.DEC)
  43. local f_cc_enb = ProtoField.uint16("BCON_PROTOCOL.cc_enb", "CC Enable", base.DEC)
  44. local f_ors_enb = ProtoField.uint16("BCON_PROTOCOL.ors_enb", "ORS Enable", base.DEC)
  45. local f_crc_enb = ProtoField.uint16("BCON_PROTOCOL.crc_enb", "CRC Enable", base.DEC)
  46. local f_dc_filter_enb = ProtoField.uint16("BCON_PROTOCOL.dc_filter_enb", "DC Filter Enable", base.DEC)
  47. local f_manchester_coding_en = ProtoField.uint16("BCON_PROTOCOL.manchester_coding_en", "Manchester Coding Enable", base.DEC)
  48. -- Add the fields to the protocol
  49. BCON_PROTOCOL.fields = {
  50. f_bcon_msg, f_utc_tim, f_utc_gps_tim_sts, f_latitude, f_longitude, f_altitude,
  51. f_x_pos, f_y_pos, f_z_pos, f_x_vel, f_y_vel, f_z_vel, f_fsm_state, f_num_resets,
  52. f_zio_err, f_sys_err, f_obc_volt_sensor, f_ps_volt_sensor, f_temp_obc, f_temp_ps,
  53. f_temp_es, f_temp_gps, f_totl_btry_volt, f_totl_panel_pwr, f_chnl_sts,
  54. f_overcrnt_err_flg_byte1, f_overcrnt_err_flg_byte2, f_fsm_state_mode, f_sns_actr_pwr_sts,
  55. f_actrs_run_sts, f_sdr_fsm_st, f_rssi0, f_rssi1, f_rx_err_cnt, f_tx_frm_cnt,
  56. f_rx_freq, f_symb_freq, f_mod, f_roll_off, f_rand_enb, f_cc_enb, f_ors_enb,
  57. f_crc_enb, f_dc_filter_enb, f_manchester_coding_en
  58. }
  59. local subtree = tree:add(BCON_PROTOCOL, buffer(), "bcon")
  60. -- dissect bcon_msg
  61. --for i=1,18 do
  62. local bcon_msg = buffer(offset, 18):string()
  63. subtree:add(f_bcon_msg, bcon_msg)
  64. offset = offset + 18
  65. --end
  66. -- dissect utc_tim
  67. local utc_tim = buffer(offset, 4):le_uint()
  68. subtree:add(f_utc_tim, utc_tim)
  69. offset = offset + 4
  70. -- dissect utc_gps_tim_sts
  71. local utc_gps_tim_sts = buffer(offset, 1):le_uint()
  72. subtree:add(f_utc_gps_tim_sts, utc_gps_tim_sts)
  73. offset = offset + 1
  74. -- dissect latitude
  75. local latitude = buffer(offset, 4):le_float()
  76. subtree:add(f_latitude, latitude)
  77. offset = offset + 4
  78. -- dissect longitude
  79. local longitude = buffer(offset, 4):le_float()
  80. subtree:add(f_longitude, longitude)
  81. offset = offset + 4
  82. -- dissect altitude
  83. local altitude = buffer(offset, 4):le_float()
  84. subtree:add(f_altitude, altitude)
  85. offset = offset + 4
  86. -- dissect x_pos
  87. local high = buffer(offset, 4):le_uint() -- First 4 bytes
  88. local low = buffer(offset + 4, 4):le_uint() -- Next 4 bytes
  89. -- Combine and unpack as a double (64-bit floating-point number)
  90. local x_pos = string.unpack("d", string.pack("<II", low, high))
  91. subtree:add(f_x_pos, x_pos)
  92. offset = offset + 8
  93. --local x_pos = buffer(offset, 8):le_uint()
  94. --subtree:add(f_x_pos, x_pos)
  95. --offset = offset + 8
  96. -- dissect y_pos
  97. local high_y_pos = buffer(offset, 4):le_uint() -- First 4 bytes for y_pos
  98. local low_y_pos = buffer(offset + 4, 4):le_uint() -- Next 4 bytes for y_pos
  99. local y_pos = string.unpack("d", string.pack("<II", low_y_pos, high_y_pos))
  100. subtree:add(f_y_pos, y_pos)
  101. offset = offset + 8
  102. -- dissect z_pos
  103. local high_z_pos = buffer(offset, 4):le_uint() -- First 4 bytes for z_pos
  104. local low_z_pos = buffer(offset + 4, 4):le_uint() -- Next 4 bytes for z_pos
  105. local z_pos = string.unpack("d", string.pack("<II", low_z_pos, high_z_pos))
  106. subtree:add(f_z_pos, z_pos)
  107. offset = offset + 8
  108. -- dissect x_vel
  109. local high_x_vel = buffer(offset, 4):le_uint() -- First 4 bytes for x_vel
  110. local low_x_vel = buffer(offset + 4, 4):le_uint() -- Next 4 bytes for x_vel
  111. local x_vel = string.unpack("d", string.pack("<II", low_x_vel, high_x_vel))
  112. subtree:add(f_x_vel, x_vel)
  113. offset = offset + 8
  114. -- dissect y_vel
  115. local high_y_vel = buffer(offset, 4):le_uint() -- First 4 bytes for y_vel
  116. local low_y_vel = buffer(offset + 4, 4):le_uint() -- Next 4 bytes for y_vel
  117. local y_vel = string.unpack("d", string.pack("<II", low_y_vel, high_y_vel))
  118. subtree:add(f_y_vel, y_vel)
  119. offset = offset + 8
  120. -- dissect z_vel
  121. local high_z_vel = buffer(offset, 4):le_uint() -- First 4 bytes for z_vel
  122. local low_z_vel = buffer(offset + 4, 4):le_uint() -- Next 4 bytes for z_vel
  123. local z_vel = string.unpack("d", string.pack("<II", low_z_vel, high_z_vel))
  124. subtree:add(f_z_vel, z_vel)
  125. offset = offset + 8
  126. -- dissect fsm_state
  127. local fsm_state = buffer(offset, 1):le_uint()
  128. subtree:add(f_fsm_state, fsm_state)
  129. offset = offset + 1
  130. -- dissect num_resets
  131. local num_resets = buffer(offset, 1):le_uint()
  132. subtree:add(f_num_resets, num_resets)
  133. offset = offset + 1
  134. -- dissect zio_err
  135. local zio_err = buffer(offset, 2):le_uint()
  136. subtree:add(f_zio_err, zio_err)
  137. offset = offset + 2
  138. -- dissect sys_err
  139. local sys_err = buffer(offset, 1):le_uint()
  140. subtree:add(f_sys_err, sys_err)
  141. offset = offset + 1
  142. -- dissect obc_volt_sensor
  143. local obc_volt_sensor = buffer(offset, 1):le_uint()
  144. subtree:add(f_obc_volt_sensor, obc_volt_sensor)
  145. offset = offset + 1
  146. -- dissect ps_volt_sensor
  147. local ps_volt_sensor = buffer(offset, 1):le_uint()
  148. subtree:add(f_ps_volt_sensor, ps_volt_sensor)
  149. offset = offset + 1
  150. -- dissect temp_obc
  151. local temp_obc = buffer(offset, 1):le_uint()
  152. subtree:add(f_temp_obc, temp_obc)
  153. offset = offset + 1
  154. -- dissect temp_ps
  155. local temp_ps = buffer(offset, 1):le_uint()
  156. subtree:add(f_temp_ps, temp_ps)
  157. offset = offset + 1
  158. -- dissect temp_es
  159. local temp_es = buffer(offset, 1):le_uint()
  160. subtree:add(f_temp_es, temp_es)
  161. offset = offset + 1
  162. -- dissect temp_gps
  163. local temp_gps = buffer(offset, 1):le_uint()
  164. subtree:add(f_temp_gps, temp_gps)
  165. offset = offset + 1
  166. -- dissect totl_btry_volt
  167. local totl_btry_volt = buffer(offset, 1):le_uint()
  168. subtree:add(f_totl_btry_volt, totl_btry_volt)
  169. offset = offset + 1
  170. -- dissect totl_panel_pwr
  171. local totl_panel_pwr = buffer(offset, 1):le_uint()
  172. subtree:add(f_totl_panel_pwr, totl_panel_pwr)
  173. offset = offset + 1
  174. -- dissect chnl_sts
  175. local chnl_sts = buffer(offset, 2):le_uint()
  176. subtree:add(f_chnl_sts, chnl_sts)
  177. offset = offset + 2
  178. -- dissect overcrnt_err_flg_byte1
  179. local overcrnt_err_flg_byte1 = buffer(offset, 1):le_uint()
  180. subtree:add(f_overcrnt_err_flg_byte1, overcrnt_err_flg_byte1)
  181. offset = offset + 1
  182. -- dissect overcrnt_err_flg_byte2
  183. local overcrnt_err_flg_byte2 = buffer(offset, 2):le_uint()
  184. subtree:add(f_overcrnt_err_flg_byte2, overcrnt_err_flg_byte2)
  185. offset = offset + 2
  186. -- dissect fsm_state_mode
  187. local fsm_state_mode = buffer(offset, 1):le_uint()
  188. subtree:add(f_fsm_state_mode, fsm_state_mode)
  189. offset = offset + 1
  190. -- dissect sns_actr_pwr_sts
  191. local sns_actr_pwr_sts = buffer(offset, 2):le_uint()
  192. subtree:add(f_sns_actr_pwr_sts, sns_actr_pwr_sts)
  193. offset = offset + 2
  194. -- dissect actrs_run_sts
  195. local actrs_run_sts = buffer(offset, 1):le_uint()
  196. subtree:add(f_actrs_run_sts, actrs_run_sts)
  197. offset = offset + 1
  198. -- dissect sdr_fsm_st
  199. local byte = buffer(offset, 1):le_uint() -- Read the full byte (8 bits)
  200. --local sdr_fsm_st = (byte >> 4) & 0x0F
  201. local sdr_fsm_st = byte & 0x0F
  202. subtree:add(f_sdr_fsm_st, sdr_fsm_st) ------------------------------------bit logic
  203. --offset = offset + 1
  204. -- dissect rssi0
  205. byte = buffer(offset, 1):le_uint()
  206. local rssi0 = (byte >> 4) & 0x03
  207. subtree:add(f_rssi0, rssi0)
  208. --offset = offset + 1
  209. -- dissect rssi1
  210. byte = buffer(offset, 1):le_uint()
  211. local rssi1 = (byte >> 6) &0x03
  212. subtree:add(f_rssi1, rssi1)
  213. offset = offset + 1
  214. -------------------------------------------one byte
  215. -- dissect rx_err_cnt
  216. local rx_err_cnt = buffer(offset, 4):le_uint()
  217. subtree:add(f_rx_err_cnt, rx_err_cnt)
  218. offset = offset + 4
  219. -- dissect tx_frm_cnt
  220. local tx_frm_cnt = buffer(offset, 4):le_uint()
  221. subtree:add(f_tx_frm_cnt, tx_frm_cnt)
  222. offset = offset + 4
  223. -- dissect rx_freq
  224. local rx_freq = buffer(offset, 4):le_uint()
  225. subtree:add(f_rx_freq, rx_freq)
  226. offset = offset + 4
  227. -- dissect symb_freq
  228. local symb_freq = buffer(offset, 1):le_uint()
  229. subtree:add(f_symb_freq, symb_freq)
  230. offset = offset + 1
  231. -------------------------------------------------------
  232. -- dissect mod
  233. byte = buffer(offset, 1):le_uint()
  234. local mod = byte & 0x03
  235. subtree:add(f_mod, mod)
  236. --offset = offset + 2
  237. -- dissect roll_off
  238. byte = buffer(offset, 1):le_uint()
  239. local roll_off = (byte >> 2) & 0x03
  240. subtree:add(f_roll_off, roll_off)
  241. --offset = offset + 2
  242. -- dissect rand_enb
  243. byte = buffer(offset, 1):le_uint()
  244. local rand_enb = (byte >> 4) & 0x03
  245. subtree:add(f_rand_enb, rand_enb)
  246. --offset = offset + 2
  247. -- dissect cc_enb
  248. byte = buffer(offset, 1):le_uint()
  249. local cc_enb = (byte >> 6) &0x01
  250. subtree:add(f_cc_enb, cc_enb)
  251. --offset = offset + 2
  252. -- dissect ors_enb
  253. byte = buffer(offset, 1):le_uint()
  254. local ors_enb = (byte >> 7) & 0x01
  255. subtree:add(f_ors_enb, ors_enb)
  256. offset = offset + 1
  257. ------------------------------------------------------------
  258. -- dissect sdr_fsm_st
  259. byte = buffer(offset, 1):le_uint()
  260. local x = byte & 0x0F
  261. subtree:add(f_sdr_fsm_st, x)
  262. -- dissect rssi0
  263. byte = buffer(offset, 1):le_uint()
  264. local rssi0 = (byte >> 4) & 0x03
  265. subtree:add(f_rssi0, rssi0)
  266. --offset = offset + 1
  267. -- dissect rssi1
  268. byte = buffer(offset, 1):le_uint()
  269. local rssi1 = (byte >> 6) & 0x03
  270. subtree:add(f_rssi1, rssi1)
  271. offset = offset + 1
  272. -----------------------------------------------------1byte
  273. -- dissect rx_err_cnt
  274. local rx_err_cnt = buffer(offset, 4):le_uint()
  275. subtree:add(f_rx_err_cnt, rx_err_cnt)
  276. offset = offset + 4
  277. -- dissect tx_frm_cnt
  278. local tx_frm_cnt = buffer(offset, 4):le_uint()
  279. subtree:add(f_tx_frm_cnt, tx_frm_cnt)
  280. offset = offset + 4
  281. -- dissect rx_freq
  282. local rx_freq = buffer(offset, 4):le_uint()
  283. subtree:add(f_rx_freq, rx_freq)
  284. offset = offset + 4
  285. ---------------------------------------------------------------
  286. -- dissect symb_freq
  287. byte = buffer(offset, 1):le_uint()
  288. local symb_freq = byte & 0x0f
  289. subtree:add(f_symb_freq, symb_freq)
  290. --offset = offset + 2
  291. -- dissect mod
  292. byte = buffer(offset, 1):le_uint()
  293. local mod = (byte >> 4) & 0x01
  294. subtree:add(f_mod, mod)
  295. --offset = offset + 2
  296. -- dissect roll_off
  297. byte = buffer(offset, 1):le_uint()
  298. local roll_off = (byte >> 5) & 0x01
  299. subtree:add(f_roll_off, roll_off)
  300. --offset = offset + 2
  301. -- dissect crc_enb
  302. byte = buffer(offset, 1):le_uint()
  303. local crc_enb = (byte >> 6) &0x03
  304. subtree:add(f_crc_enb, crc_enb)
  305. offset = offset + 1
  306. --------------------------------------------------------------------
  307. -- dissect dc_filter_enb
  308. byte = buffer(offset, 1):le_uint()
  309. --byte = 0x2c
  310. local dc_filter_enb = byte & 0x03
  311. subtree:add(f_dc_filter_enb, dc_filter_enb)
  312. --offset = offset + 2
  313. byte = buffer(offset, 1):le_uint()
  314. --byte = 0x2c
  315. local cc_enb = (byte >> 2) & 0x03
  316. subtree:add(f_cc_enb, cc_enb)
  317. --offset = offset + 2
  318. -- dissect rand_enb (2 bits)
  319. byte = buffer(offset, 1):le_uint()
  320. --byte = 0x2c
  321. local rand_enb = (byte >> 4) & 0x03
  322. subtree:add(f_rand_enb, rand_enb)
  323. --offset = offset + 2
  324. -- dissect manchester_coding_en
  325. byte = buffer(offset, 1):le_uint()
  326. --byte = 0x2c
  327. local manchester_coding_en = (byte >>6) & 0x03
  328. subtree:add(f_manchester_coding_en, manchester_coding_en)
  329. --offset = offset + 2
  330. end