Adding phase field (extracted from @jamesshao8 repo) (#357)

This commit is contained in:
Erwin Ried
2020-05-20 12:34:20 +02:00
committed by GitHub
parent bdeab6428b
commit 739218116d
9 changed files with 51 additions and 11 deletions
+3 -2
View File
@@ -224,9 +224,10 @@ void set_fsk_data(const uint32_t stream_length, const uint32_t samples_per_bit,
send_message(&message);
}
void set_pocsag(const pocsag::BitRate bitrate) {
void set_pocsag(const pocsag::BitRate bitrate, bool phase) {
const POCSAGConfigureMessage message {
bitrate
bitrate,
phase
};
send_message(&message);
}