More ADS-B TX experimentation

Lots of junk added in Numbers Station regarding voice files
Removed warnings caused by unfinished ADS-B function
This commit is contained in:
furrtek
2017-05-01 10:42:09 +01:00
parent 790ec34ac0
commit bebec9ccf7
12 changed files with 224 additions and 172 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ private:
bool start_tx();
void generate_frame();
void generate_frame_pos();
void on_txdone(const int n);
void on_txdone(const bool v);
const Style style_val {
.font = font::fixed_8x16,
@@ -166,7 +166,7 @@ private:
Message::ID::TXDone,
[this](const Message* const p) {
const auto message = *reinterpret_cast<const TXDoneMessage*>(p);
this->on_txdone(message.progress);
this->on_txdone(message.done);
}
};
};