Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can you please add "460800"bps modem_speed to official PI-STAR dashboard? #177

Open
bi7jta opened this issue Jan 25, 2024 · 0 comments
Open

Comments

@bi7jta
Copy link

bi7jta commented Jan 25, 2024

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

`

<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 :

image

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant