Skip to content
Snippets Groups Projects
Commit 57012ecd authored by Aude Grabas's avatar Aude Grabas
Browse files

update version number

parent 35a332a7
Branches
No related tags found
No related merge requests found
...@@ -258,7 +258,7 @@ def cellnode_configure_ccn(node_tangopath, nbpm, npsc): ...@@ -258,7 +258,7 @@ def cellnode_configure_ccn(node_tangopath, nbpm, npsc):
return True return True
@trycatch_tango_devfailed @trycatch_tango_devfailed
def centralnode_configure_ccn(node_tangopath, nbpm, npsc): def centralnode_configure_ccn_w_gbe(node_tangopath, nbpm, npsc):
""" """
Configure the ComCellNode block on the centralnode. Configure the ComCellNode block on the centralnode.
Automatically set the number of bpm/psc packets and MAC length. Automatically set the number of bpm/psc packets and MAC length.
...@@ -286,9 +286,9 @@ def centralnode_configure_ccn(node_tangopath, nbpm, npsc): ...@@ -286,9 +286,9 @@ def centralnode_configure_ccn(node_tangopath, nbpm, npsc):
return None return None
for n in range(len(nbpm)): for n in range(len(nbpm)):
maclen = npsc*6+10 maclen = npsc*4+4
logger.debug("Configure packeter {} framesize (mac length) to {}".format(n, maclen)) logger.debug("Configure packeter {} framesize (mac length) to {}".format(n, maclen))
prx["ccnpack{}_framesize".format(n)] = maclen prx["ccnethhead{}_framesize".format(n)] = maclen
logger.debug("Configure packeter {} npackets to {}".format(n, npsc-1)) logger.debug("Configure packeter {} npackets to {}".format(n, npsc-1))
prx["ccnpack{}_npackets".format(n)] = npsc-1 prx["ccnpack{}_npackets".format(n)] = npsc-1
......
...@@ -14,4 +14,4 @@ This package is cut in several modules: ...@@ -14,4 +14,4 @@ This package is cut in several modules:
For basic usage, see doc of FofbTool.Utils For basic usage, see doc of FofbTool.Utils
""" """
__version__ = "3.5-dev" __version__ = "3.5.1-dev"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment