Plain LoRa Gateway to use with Meshtastic

Hello,

I want to use the RAK7391 (WIth a Raspberry CM4 and a RAK5146). The framework used for the nodes is Meshtastic on a RAK4630. So far, the nodes are communicating correctly. My goal is to receive the same LoRa packets exchanged by the nodes on the gateway.
I am actually testing the whole setting with the SX1303 HAL library, specifically, the test_loragw_hal_rx. So far, I am not receiving all packets, or rather receiving rarely some packets, I get the following output for example:

===== sx1302 HAL RX test =====
INFO: rxpkt buffer size is set to 16
INFO: Select channel mode 1
Opening USB communication interface
INFO: Configuring TTY
INFO: Flushing TTY
INFO: Setting TTY in blocking mode
INFO: Connect to MCU
INFO: Concentrator MCU version is V01.00.00
INFO: MCU status: sys_time:1205068 temperature:33.9oC
Note: chip version is 0x12 (v1.2)
INFO: using legacy timestamp
ARB: dual demodulation disabled for all SF
Waiting for packets...

----- LoRa packet -----
  count_us: 339195854
  size:     29
  chan:     3
  status:   0x11
  datr:     7
  codr:     1
  rf_chain  0
  freq_hz   868100000
  snr_avg:  -9.0
  rssi_chan:133.0
  rssi_sig :126.0
  crc:      0xFD60
F0 6D FF CB C3 AB 6B 79 60 7F 32 0B 84 31 FF A4 56 56 80 B5 C6 86 8E 0E 4B 1A BB F2 A4 

----- LoRa packet -----
  count_us: 339195854
  size:     29
  chan:     7
  status:   0x11
  datr:     7
  codr:     1
  rf_chain  0
  freq_hz   868100000
  snr_avg:  -9.0
  rssi_chan:133.0
  rssi_sig :126.0
  crc:      0xFD60
F0 6D FF CB C3 AB 6B 79 60 7F 32 0B 84 31 FF A4 56 56 80 B5 C6 86 8E 0E 4B 1A BB F2 A4 
Received 2 packets (total:0)

----- LoRa packet -----
  count_us: 391441175
  size:     29
  chan:     3
  status:   0x11
  datr:     7
  codr:     1
  rf_chain  0
  freq_hz   868100000
  snr_avg:  -9.8
  rssi_chan:136.0
  rssi_sig :132.0
  crc:      0x5F57
CB 5B 9D CD C3 2B FF 4A 7C D2 5B 0B A2 31 F4 6E 15 0A 7D 88 80 F9 56 B2 9E 26 53 AB 94 
Received 1 packets (total:0)

My question is: What can possibly be the problem?
I would also appreciate it if there is already a library that can do LoRa packets ‘sniffing’ correctly.

Thank you so much in advance