Fixed LCR scan and alt format, console widget, text input autotrim

This commit is contained in:
furrtek 2016-07-29 04:52:51 +02:00
parent 97435147fb
commit c58039e557
22 changed files with 221 additions and 277 deletions

View file

@ -539,7 +539,7 @@ public:
afsk_bw(afsk_bw),
afsk_alt_format(afsk_alt_format)
{
memcpy(message_data, data, 256);
memcpy(message_data, data, 512);
}
uint32_t afsk_samples_per_bit;
@ -548,7 +548,7 @@ public:
uint8_t afsk_repeat;
uint32_t afsk_bw;
bool afsk_alt_format;
char message_data[256];
char message_data[512];
};
class FIFOSignalMessage : public Message {