Ask user for polarisation when adding DVB-S mux
This commit is contained in:
parent
d0c98767e4
commit
b8726e1076
1 changed files with 15 additions and 0 deletions
|
@ -378,6 +378,21 @@ ajax_adapteraddmux(http_connection_t *hc, const char *remain, void *opaque)
|
|||
", fec: $F('fec')");
|
||||
}
|
||||
|
||||
if(fetype == FE_QPSK) {
|
||||
tcp_qprintf(&tq,
|
||||
"<div class=\"infoprefixwidefat\">Polarisation:</div>"
|
||||
"<div><select id=\"pol\" class=\"textinput\">");
|
||||
|
||||
add_option(&tq, 1, "Vertical");
|
||||
add_option(&tq, 1, "Horizontal");
|
||||
tcp_qprintf(&tq, "</select></div>");
|
||||
|
||||
snprintf(params + strlen(params), sizeof(params) - strlen(params),
|
||||
", pol: $F('pol')");
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
if(fetype == FE_OFDM) {
|
||||
tcp_qprintf(&tq,
|
||||
|
|
Loading…
Add table
Reference in a new issue