Hello,
I have the exact same problem that @Ethsan, from the previous issue, has.
We are enable to sniff radio packets if we use board other than m3 or a8.
It is due to this function :
@staticmethod
def select_nodes(opts):
"""Select all gateways that support sniffer"""
nodes = common.get_nodes_selection(**vars(opts))
nodes_list = [n for n in nodes if n.startswith(('m3', 'a8'))]
return nodes_list
Is it possible to update and remove this filtering ? or can we change it and create a pull request ?
Thank you