mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-10-18 08:32:13 +00:00
Fix baseband thread init order bug for all procs. (#1293)
This commit is contained in:
@@ -31,7 +31,8 @@ class NOOPProcessor : public BasebandProcessor {
|
||||
void execute(const buffer_c8_t& buffer) override;
|
||||
|
||||
private:
|
||||
BasebandThread baseband_thread{1536000, this, NORMALPRIO + 20, baseband::Direction::Transmit};
|
||||
/* NB: Threads should be the last members in the class definition. */
|
||||
BasebandThread baseband_thread{1536000, this, baseband::Direction::Transmit};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user