Commit 45546102 authored by Robert Schmidt's avatar Robert Schmidt

Logs: no duplex mode logs, not telnet client connected logs

parent 2da515e5
...@@ -411,7 +411,7 @@ frame_type_t get_frame_type(uint16_t current_band, uint8_t scs_index) ...@@ -411,7 +411,7 @@ frame_type_t get_frame_type(uint16_t current_band, uint8_t scs_index)
else else
current_type = FDD; current_type = FDD;
LOG_I(NR_MAC, "NR band %d, duplex mode %s, duplex spacing = %d KHz\n", current_band, duplex_mode[current_type], delta_duplex); LOG_D(NR_MAC, "NR band %d, duplex mode %s, duplex spacing = %d KHz\n", current_band, duplex_mode[current_type], delta_duplex);
return current_type; return current_type;
} }
...@@ -423,7 +423,7 @@ int32_t get_delta_duplex(int nr_bandP, uint8_t scs_index) ...@@ -423,7 +423,7 @@ int32_t get_delta_duplex(int nr_bandP, uint8_t scs_index)
int32_t delta_duplex = (nr_bandtable[nr_table_idx].ul_min - nr_bandtable[nr_table_idx].dl_min); int32_t delta_duplex = (nr_bandtable[nr_table_idx].ul_min - nr_bandtable[nr_table_idx].dl_min);
LOG_I(NR_MAC, "NR band duplex spacing is %d KHz (nr_bandtable[%d].band = %d)\n", delta_duplex, nr_table_idx, nr_bandtable[nr_table_idx].band); LOG_D(NR_MAC, "NR band duplex spacing is %d KHz (nr_bandtable[%d].band = %d)\n", delta_duplex, nr_table_idx, nr_bandtable[nr_table_idx].band);
return delta_duplex; return delta_duplex;
} }
......
...@@ -681,7 +681,6 @@ void run_telnetsrv(void) { ...@@ -681,7 +681,6 @@ void run_telnetsrv(void) {
} }
if(!readc) { if(!readc) {
printf ("[TELNETSRV] Telnet Client disconnected.\n");
break; break;
} }
...@@ -727,7 +726,7 @@ void run_telnetsrv(void) { ...@@ -727,7 +726,7 @@ void run_telnetsrv(void) {
write_history(telnetparams.histfile); write_history(telnetparams.histfile);
clear_history(); clear_history();
close(telnetparams.new_socket); close(telnetparams.new_socket);
printf ("[TELNETSRV] Telnet server waitting for connection...\n"); //printf ("[TELNETSRV] Telnet server waitting for connection...\n");
} }
close(sock); close(sock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment