mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-10 01:05:42 +00:00
Merge branch 'master' of https://github.com/uhi22/pyPLC
Conflicts: doc/pyPlc.ini.template
This commit is contained in:
commit
80a1b1fd4f
4 changed files with 4324 additions and 2 deletions
|
@ -88,7 +88,12 @@ exit_on_session_end = False
|
|||
# Possible values:
|
||||
# No: No testcases are executed. Normal function as Evse or Pev.
|
||||
# Yes: Testcases are executed. The EvseMode will produce various errors for fault injection tests.
|
||||
testsuite_enable = Yes
|
||||
testsuite_enable = No
|
||||
|
||||
# Logging to UDP Syslog messages
|
||||
# If this is activated, the pyPlc will send all logging messages also to the network interface,
|
||||
# in form of UDP Syslog messages. For details see in udplog.py.
|
||||
udp_syslog_enable = Yes
|
||||
|
||||
# REST callback for SoC states. Comment out to disable. Do not leave a trailing slash
|
||||
soc_callback_enabled = False
|
||||
|
|
BIN
results/2023-05-24_pyPlc_with_Ioniq93prcSoc.pcapng
Normal file
BIN
results/2023-05-24_pyPlc_with_Ioniq93prcSoc.pcapng
Normal file
Binary file not shown.
4306
results/2023-05-24_pyPlc_with_Ioniq93prcSoc.pcapng.decoded.txt
Normal file
4306
results/2023-05-24_pyPlc_with_Ioniq93prcSoc.pcapng.decoded.txt
Normal file
File diff suppressed because it is too large
Load diff
13
udplog.py
13
udplog.py
|
@ -2,6 +2,7 @@
|
|||
# This module "prints" log messages to UDP broadcasts to port 514.
|
||||
|
||||
from helpers import prettyMac
|
||||
from configmodule import getConfigValue, getConfigValueBool
|
||||
|
||||
class udplog():
|
||||
def fillMac(self, macbytearray, position=6): # position 6 is the source MAC
|
||||
|
@ -18,9 +19,14 @@ class udplog():
|
|||
# Severity = 7 = "debug"
|
||||
# print("[UDPLOG] Logging " + s)
|
||||
if (purpose==""):
|
||||
return # here we filter, which kind of infos we want to provide to the UDP logging.
|
||||
if (not self.isUpdSyslogEnabled):
|
||||
# If no special purpose, and the logging is disabled, we stop here.
|
||||
return
|
||||
# Logging is not suppressed, so continue to construct the message:
|
||||
strLevel="<15>"
|
||||
# The String to be logged. Terminated by 00.
|
||||
if (len(s)>700):
|
||||
s = s[0:700] # Limit the length. Too long messages crash the transmit. Todo: Find out the real limit.
|
||||
strMessage=s+"\0"
|
||||
|
||||
lenPayLoad = 4 + len(strMessage) # length of level is 4
|
||||
|
@ -98,6 +104,11 @@ class udplog():
|
|||
self.addressManager = addressManager
|
||||
self.ownMac = self.addressManager.getLocalMacAddress()
|
||||
print("udplog started with ownMac " + prettyMac(self.ownMac))
|
||||
self.isUpdSyslogEnabled = getConfigValueBool("udp_syslog_enable")
|
||||
if (self.isUpdSyslogEnabled):
|
||||
print("logging to UDP Syslog is enabled")
|
||||
else:
|
||||
print("logging to UDP Syslog is disabled")
|
||||
|
||||
def udplog_init(transmitCallback, addressManager):
|
||||
global udplogger
|
||||
|
|
Loading…
Reference in a new issue