I have got 3 ttgos.
I want that node1 can communicate with node2 either
directly or via repeater.
And node2 can communicate with node1 either directly
or via repeater as well.
repeater sends messages to node1 and node2 from time to time on i’ts own,
via a conneted raspberry pi using meshtatic python cli tool.
repeater
/ \
/ \
/ \
node1-----------node2
To reduce tx air time I want to make sure that node1 never forwards messages
and node2 never forwards messages (in this case messages from repeater)
So I wanted to set hop_limit to 0 on node1 and node2 and to 1 on repeater.
Does that make sense, doesn’t it ?
But I just noticed that all my nodes report that hop_limit is 0, now I am confused.
On all three nodes I get 0 for hop_limit, I would have expected 3 as per
https://meshtastic.org/docs/software/settings/misc#hop_limit hop_limit
(cli) me@host:~# meshtastic --port /dev/ttyACM0 --get hop_limit
Connected to radio
hop_limit: 0
Completed getting preferences
Please let me know what I am thinking wrong.
Thanks Lixus