Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mobile-transceiver-software
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
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
Will Sloan
mobile-transceiver-software
Commits
7198590a
Commit
7198590a
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
bug fixes around usb detection
parent
6b126409
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main.rs
+23
-10
23 additions, 10 deletions
src/main.rs
with
23 additions
and
10 deletions
src/main.rs
+
23
−
10
View file @
7198590a
...
...
@@ -109,21 +109,33 @@ mod app {
red
.set_low
();
green
.set_low
();
// Detect if we're connected to USB or not
let
usb_detect
=
gpioa
.pa5
.into_pull_down_input
();
// need to give time for the pull-down to take effect
let
mut
delay
=
dp
.TIM5
.delay_us
(
&
clocks
);
delay
.delay_us
(
100u8
);
let
usb_connected
=
usb_detect
.is_high
();
// setup radio
let
mosi
=
gpiob
.pb5
.into_alternate
();
let
miso
=
gpiob
.pb4
.into_alternate
();
let
sclk
=
gpiob
.pb3
.into_alternate
();
let
radio
=
if
usb_connected
{
None
}
else
{
let
mosi
=
gpiob
.pb5
.into_alternate
();
let
miso
=
gpiob
.pb4
.into_alternate
();
let
sclk
=
gpiob
.pb3
.into_alternate
();
let
sdn
=
gpiob
.pb12
.into_push_pull_output
();
let
cs
=
gpioa
.pa8
.into_push_pull_output
();
let
sdn
=
gpiob
.pb12
.into_push_pull_output
();
let
cs
=
gpioa
.pa8
.into_push_pull_output
();
let
spi
=
Spi
::
new
(
dp
.SPI1
,
(
sclk
,
miso
,
mosi
),
MODE
,
10
.MHz
(),
&
clocks
);
let
spi
=
Spi
::
new
(
dp
.SPI1
,
(
sclk
,
miso
,
mosi
),
MODE
,
10
.MHz
(),
&
clocks
);
let
delay
=
dp
.TIM5
.delay_us
(
&
clocks
);
let
buf
=
singleton!
(:
[
u8
;
MAX_PACKET_LEN
]
=
[
0
;
MAX_PACKET_LEN
])
.unwrap
();
let
radio
=
RadioManager
::
new
(
spi
,
sdn
,
cs
,
delay
,
buf
,
config
.enable_digipeating
);
let
buf
=
singleton!
(:
[
u8
;
MAX_PACKET_LEN
]
=
[
0
;
MAX_PACKET_LEN
])
.unwrap
();
let
radio
=
RadioManager
::
new
(
spi
,
sdn
,
cs
,
delay
,
buf
,
config
.enable_digipeating
);
radio
};
// Setup GPS serial
let
pins
=
(
gpioa
.pa9
,
gpioa
.pa10
);
...
...
@@ -170,12 +182,13 @@ mod app {
let
buf
=
cortex_m
::
singleton!
(:
[
u8
;
MAX_PACKET_LEN
]
=
[
0
;
MAX_PACKET_LEN
])
.unwrap
();
let
status
=
if
usb_
detect
.is_high
()
{
let
status
=
if
usb_
connected
{
Status
::
Programming
(
false
)
}
else
if
radio
.is_none
()
{
Status
::
Error
(
false
)
}
else
if
!
config
.enable_transmit
{
green
.set_high
();
Status
::
TxDisabled
(
false
)
}
else
{
green
.set_high
();
...
...
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