Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
174c4c70
Commit
174c4c70
authored
17 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Update modem/comm rate help buffer text.
parent
69830528
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/syncterm/bbslist.c
+4
-2
4 additions, 2 deletions
src/syncterm/bbslist.c
with
4 additions
and
2 deletions
src/syncterm/bbslist.c
+
4
−
2
View file @
174c4c70
...
...
@@ -1246,9 +1246,11 @@ void change_settings(void)
break
;
case
6
:
uifc
.
helpbuf
=
"`Modem/Comm Rate`
\n\n
"
"Enter the rate (in bits-per-second) used to communicate with the modem.
\n
"
"Enter the rate (in
`
bits-per-second
`
) used to communicate with the modem.
\n
"
"Use the highest `DTE Rate` supported by your communication port and modem.
\n\n
"
"Examples: `38400`, `57600`, `115200`"
;
"Examples: `38400`, `57600`, `115200`
\n\n
"
"This rate is sometimes (incorrectly) referred to as the `baud rate`.
\n\n
"
"Enter `0` to use the current or default rate of the communication port"
;
sprintf
(
str
,
"%u"
,
settings
.
mdm
.
com_rate
?
settings
.
mdm
.
com_rate
:
115200
);
if
(
uifc
.
input
(
WIN_MID
|
WIN_SAV
,
0
,
0
,
"Modem/Comm Rate"
,
str
,
LIST_NAME_MAX
,
K_EDIT
)
>=
0
)
{
settings
.
mdm
.
com_rate
=
strtol
(
str
,
NULL
,
10
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment