mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
10 lines
No EOL
320 B
C
10 lines
No EOL
320 B
C
#pragma once
|
|
|
|
#include <mutex>
|
|
#include "types.h"
|
|
|
|
// Rotate soft symbols, limited to a few phase states but faster
|
|
void rotate_soft(int8_t *soft, int size, phase_t phase, bool iqswap);
|
|
|
|
// Perform ANY rotation on soft symbols, but this is slightly slower
|
|
void rotate_soft_arbitrary(int8_t *soft, int size, float phase); |