@@ -618,6 +618,7 @@ int demod_init (struct audio_s *pa)
618
618
619
619
case MODEM_BASEBAND :
620
620
case MODEM_SCRAMBLE :
621
+ case MODEM_AIS :
621
622
default : /* Not AFSK */
622
623
{
623
624
@@ -694,9 +695,10 @@ int demod_init (struct audio_s *pa)
694
695
#endif
695
696
696
697
text_color_set (DW_COLOR_DEBUG );
697
- dw_printf ("Channel %d: %d baud, K9NG/G3RUH , %s, %d sample rate x %d" ,
698
+ dw_printf ("Channel %d: %d baud, %s , %s, %d sample rate x %d" ,
698
699
chan ,
699
700
save_audio_config_p -> achan [chan ].baud ,
701
+ save_audio_config_p -> achan [chan ].modem_type == MODEM_AIS ? "AIS" : "K9NG/G3RUH" ,
700
702
save_audio_config_p -> achan [chan ].profiles ,
701
703
save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec ,
702
704
save_audio_config_p -> achan [chan ].upsample );
@@ -745,7 +747,9 @@ int demod_init (struct audio_s *pa)
745
747
dw_printf ("This is a suitable ratio for good performance.\n" );
746
748
}
747
749
748
- demod_9600_init (save_audio_config_p -> achan [chan ].upsample * save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec , save_audio_config_p -> achan [chan ].baud , D );
750
+ demod_9600_init (save_audio_config_p -> achan [chan ].modem_type ,
751
+ save_audio_config_p -> achan [chan ].upsample * save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec ,
752
+ save_audio_config_p -> achan [chan ].baud , D );
749
753
750
754
if (strchr (save_audio_config_p -> achan [chan ].profiles , '+' ) != NULL ) {
751
755
@@ -970,6 +974,7 @@ void demod_process_sample (int chan, int subchan, int sam)
970
974
971
975
case MODEM_BASEBAND :
972
976
case MODEM_SCRAMBLE :
977
+ case MODEM_AIS :
973
978
default :
974
979
975
980
if (zerostuff ) {
0 commit comments