I am planning to use either M6108 or M8108 modules attached to Raspberry Pis for a project.
I was looking through the source code for the morse driver on GitHub and found this snippet in monitor.c
”static netdev_tx_t morse_mon_xmit(struct sk_buff *skb, struct net_device dev)
{
/ TODO: allow packet injection */
dev_kfree_skb(skb);
return NETDEV_TX_OK;
}”
Am I correct that packet injection is not currently supported? (packet is just dropped?)
Is there any timeframe on when this might be implemented?
Cheers!