This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
vp-digi
mirror of
https://github.com/sq8vps/vp-digi
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
9
Wiki
Activity
Browse Source
Merge pull request
#4
from sq8vps/dev
config bug fix
pull/10/head
Piotr Wilkoń
4 years ago
committed by
GitHub
parent
86e4036f08
17093802a2
commit
a7ffc53c7b
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
3 changed files
with
11 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
CHANGELOG.md
+1
-1
Src/common.c
+1
-1
Src/terminal.c
+ 9
- 0
CHANGELOG.md
View File
@ -1,3 +1,12 @@
# 1.2.1 (2021-10-13)
## New features
* none
## Bug fixes
* Digi max and rep values could not be entered when only
<
LF
>
line ending was used.
## Other
* none
## Known bugs
* none as far
# 1.2.0 (2021-09-10)
# 1.2.0 (2021-09-10)
This is the very first open-source VP-Digi release.
This is the very first open-source VP-Digi release.
## New features
## New features
+ 1
- 1
Src/common.c
View File
@ -25,7 +25,7 @@ uint8_t callSsid = 0;
const
uint8_t
dest
[
7
]
=
{
130
,
160
,
156
,
172
,
96
,
98
,
96
}
;
/
/
APNV01
-
0
const
uint8_t
dest
[
7
]
=
{
130
,
160
,
156
,
172
,
96
,
98
,
96
}
;
/
/
APNV01
-
0
const
uint8_t
*
versionString
=
(
const
uint8_t
*
)
"
VP-Digi v. 1.2.
0
\r
\n
The open-source standalone APRS digipeater controller and KISS TNC
\r
\n
"
;
const
uint8_t
*
versionString
=
(
const
uint8_t
*
)
"
VP-Digi v. 1.2.
1
\r
\n
The open-source standalone APRS digipeater controller and KISS TNC
\r
\n
"
;
uint8_t
autoReset
=
0
;
uint8_t
autoReset
=
0
;
uint32_t
autoResetTimer
=
0
;
uint32_t
autoResetTimer
=
0
;
+ 1
- 1
Src/terminal.c
View File
@ -1347,7 +1347,7 @@ void term_parse(uint8_t *cmd, uint16_t len, Terminal_stream src, Uart_data_type
uint8_t
err
=
0
;
uint8_t
err
=
0
;
if
(
!
(
cmd
[
12
]
=
=
'
\r
'
)
|
|
(
cmd
[
12
]
=
=
'
\n
'
)
)
if
(
!
(
(
cmd
[
12
]
=
=
'
\r
'
)
|
|
(
cmd
[
12
]
=
=
'
\n
'
)
)
)
{
{
err
=
1
;
err
=
1
;
}
}
Write
Preview
Loading…
Cancel
Save