This commit is contained in:
2026-06-10 07:48:43 +08:00
parent a9dbe7261b
commit 504e89ee47
3 changed files with 4 additions and 3 deletions

View File

@@ -76,7 +76,7 @@ class Decoder_main(threading.Thread):
:return:
'''
self.decoder_class = decoder_class
if decoder_class == 'ssvep' or decoder_class == 'pvs':
if self.decoder_class == 'ssvep' or self.decoder_class == 'pvs':
self.n_chan = 8
# self.thread_data_server.interval_inited = False
DW_cost_method, self.DW_cost_tv = ast.literal_eval(IniRead('system', 'SSVEP_ThresholdValue'))

View File

@@ -19,7 +19,8 @@ source activate 3in1Py310
python runDecoder.py
python datamock.py
python ZeroMQClient_mock.py
python system_test.py
python filter_test.py
# 遗留问题

View File

@@ -21,7 +21,7 @@ class ParadigmRingBuffer:
def appendBuffer(self, data):
if self.nUpdate == self.n_points:
# raise Exception("Buffer is full")
algo_log("Buffer is full", record_once=True)
algo_log("ParadigmRingBuffer is full", record_once=True)
n = data.shape[1]