diff --git a/README.md b/README.md index c1004f4..59f7c6b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Latest tag](https://img.shields.io/github/tag/lnls-sirius/pydrs.svg?style=flat) [![Latest release](https://img.shields.io/github/release/lnls-sirius/pydrs.svg?style=flat)](https://github.com/lnls-sirius/pydrs/releases) [![PyPI version fury.io](https://badge.fury.io/py/pydrs.svg)](https://pypi.python.org/pypi/pydrs/) -[![Read the Docs](https://readthedocs.org/projects/spack/badge/?version=latest)](https://lnls-sirius.github.io/pydrs/) +[![Read the Docs](https://readthedocs.org/projects/spack/badge/?version=latest)](https://cnpem-sei.github.io/pydrs/) ## What is PyDRS? diff --git a/src/pydrs/base.py b/src/pydrs/base.py index 52226ea..5c99287 100644 --- a/src/pydrs/base.py +++ b/src/pydrs/base.py @@ -2125,6 +2125,16 @@ def get_dsp_modules_bank( "coeffs" ].append(dsp_coeffs) + if return_floathex: + dsp_modules_bank[dsp_classes_names[dsp_class]]["coeffs"] = [ + dsp_coeffs, + dsp_coeffs_hex, + ] + else: + dsp_modules_bank[dsp_classes_names[dsp_class]][ + "coeffs" + ] = dsp_coeffs + if print_modules: prettier_print(dsp_modules_bank)