You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you please add "460800"bps modem_speed to official PI-STAR dashboard?
So that I can use G4KLX MMDVM firmware(Repeater), use the Version 2. FM Network.
Thank you very much! Many HAMs love your dashboard, Simple and efficient.
<tr>
<td align="left"><a class="tooltip2" href="#"><?php echo $lang['radio_type'];?>:<span><b>Radio/Modem</b>What kind of radio or modem hardware do you have?</span></a></td>
<td align="left" colspan="2"><select name="confHardware">
...
...
...
value="opengd77">OpenGD77 DMR hotspot (USB)
<tr id="modem_speed">
<td align="left"><a class="tooltip2" href="#">Modem Baud Rate:<span><b>Baudrate</b>Serial speed (most Hats are using 115200)</span></a></td>
<td align="left" colspan="3"><select name="confHardwareSpeed">
<?php
$modemSpeeds = [115200, 460800, 57600, 38400, 19200, 9600, 4800, 2400, 1200];
foreach($modemSpeeds as $modemSpeed) {
if ($configmmdvm['Modem']['UARTSpeed'] == $modemSpeed) {
echo " <option value=\"$modemSpeed\" selected=\"selected\">$modemSpeed</option>\n";
}
else {
echo " <option value=\"$modemSpeed\">$modemSpeed</option>\n";
}
}
?>
</select>
Reference: for Normal Modem [115200]; for FM Network/Repeater to Allstarlink [460800]
</td>
</tr>
`
Result Like this :
The text was updated successfully, but these errors were encountered:
Hi Andy MW0MWZ :
Can you please add "460800"bps modem_speed to official PI-STAR dashboard?
So that I can use G4KLX MMDVM firmware(Repeater), use the Version 2. FM Network.
Thank you very much! Many HAMs love your dashboard, Simple and efficient.
https://github.com/AndyTaylorTweet/Pi-Star_DV_Dash/blob/master/admin/configure.php
`
value="opengd77">OpenGD77 DMR hotspot (USB)
`
Result Like this :
The text was updated successfully, but these errors were encountered: