Update m17_coder_impl.cc

changed transmission type display format
main
Wojciech Kaczmarski 2024-06-08 17:17:01 +02:00 committed by GitHub
parent 694f0d9e2d
commit 84c7c66b3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ void m17_coder_impl::set_type(int mode,int data,int encr_type,int encr_subtype,i
uint16_t ccrc=LSF_CRC(&lsf);
lsf.crc[0]=ccrc>>8;
lsf.crc[1]=ccrc&0xFF;
printf("type: %hhX%hhX\n",lsf.type[0],lsf.type[1]);fflush(stdout);
printf("Transmission type: 0x%hhX%hhX\n",lsf.type[0],lsf.type[1]);fflush(stdout);
}
/*