Open orgua opened 1 day ago
Deriving a Harvester-Config with custom window-size does NOT set the step-size at all
hrv_config = HarvesterPRUConfig.from_vhrv( self.cfg_src.harvester, for_emu=True, dtype_in=dtype_in, window_size=window_size, )
samples_n
Until fixed, it is needed to specify sample_n manually, i.e.
sample_n
cfg_bq25570_base = VirtualSourceConfig( name="BQ25570", harvester=VirtualHarvesterConfig( name="mppt_bq_solar", samples_n=900, )
Deriving a Harvester-Config with custom window-size does NOT set the step-size at all
samples_n
is still 8Workaround
Until fixed, it is needed to specify
sample_n
manually, i.e.