mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-13 19:54:39 +00:00
Merge pull request #358 from ArjanOnwezen/proc_aprsrc_cpp_warning_fix
proc_aprsrx.cpp compile warning fix
This commit is contained in:
commit
182059b3c6
@ -141,12 +141,11 @@ bool APRSRxProcessor::parse_bit(const uint8_t current_bit){
|
|||||||
uint8_t decoded_bit = ~(current_bit ^ last_bit) & 0x1;
|
uint8_t decoded_bit = ~(current_bit ^ last_bit) & 0x1;
|
||||||
last_bit = current_bit;
|
last_bit = current_bit;
|
||||||
|
|
||||||
int16_t log = decoded_bit == 0 ? -32768 : 32767;
|
//int16_t log = decoded_bit == 0 ? -32768 : 32767;
|
||||||
|
//if(stream){
|
||||||
//if( stream ) {
|
// const size_t bytes_to_write = sizeof(log) * 1;
|
||||||
// const size_t bytes_to_write = sizeof(log) * 1;
|
// const auto result = stream->write(&log, bytes_to_write);
|
||||||
// const auto result = stream->write(&log, bytes_to_write);
|
//}
|
||||||
// }
|
|
||||||
|
|
||||||
if(decoded_bit & 0x1){
|
if(decoded_bit & 0x1){
|
||||||
if(ones_count < 8){
|
if(ones_count < 8){
|
||||||
|
Loading…
Reference in New Issue
Block a user