You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some RICs on my clients that send encrypted or crappy Pocsag messages.
It have been nice to be able to put it in the client.yaml file on a raw xalled exlric or something.
On my clients i have done this manually by adding some code to
/opt/boswatch3/boswatch/decoder/pocsagDecoder.py
if re.search("[0-9]{7}", ric) and re.search("[1-4]", subric):
if "Alpha:" in data:
if ric == '1600000':
logging.info("Ric 1600000")
return
if ric == '0682408':
logging.info("Ric 0682408")
return
I do this because i have the server on other location and i do not like the client to send crapp to server. This code skippes the ric i have added.
To be able to have a loop here picking RIC from client.yaml should be nice to have,.
Best regards Stefan / Sm7Tix
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have some RICs on my clients that send encrypted or crappy Pocsag messages.
It have been nice to be able to put it in the client.yaml file on a raw xalled exlric or something.
On my clients i have done this manually by adding some code to
/opt/boswatch3/boswatch/decoder/pocsagDecoder.py
if re.search("[0-9]{7}", ric) and re.search("[1-4]", subric):
if "Alpha:" in data:
if ric == '1600000':
logging.info("Ric 1600000")
return
if ric == '0682408':
logging.info("Ric 0682408")
return
I do this because i have the server on other location and i do not like the client to send crapp to server. This code skippes the ric i have added.
To be able to have a loop here picking RIC from client.yaml should be nice to have,.
Best regards Stefan / Sm7Tix
Beta Was this translation helpful? Give feedback.
All reactions