Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marek
firmware
Commits
364e94a3
Commit
364e94a3
authored
5 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
fix(helloworld): remove unused ecg_write function
parent
ed05f0c6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Hello_World/main.c
+0
-18
0 additions, 18 deletions
Hello_World/main.c
with
0 additions
and
18 deletions
Hello_World/main.c
+
0
−
18
View file @
364e94a3
...
...
@@ -90,24 +90,6 @@ uint32_t ecg_read_reg(uint8_t reg)
return
(
rx_data
[
1
]
<<
16
)
|
(
rx_data
[
2
]
<<
8
)
|
rx_data
[
3
];
}
void
ecg_write_reg
(
uint8_t
reg
,
uint32_t
data
)
{
spi_req_t
req
;
uint8_t
tx_data
[]
=
{(
reg
<<
1
)
|
0
,
0
,
0
,
0
};
uint8_t
rx_data
[]
=
{
0
,
data
>>
16
,
(
data
>>
8
)
&
0xFF
,
data
&
0xFF
};
req
.
tx_data
=
tx_data
;
req
.
rx_data
=
rx_data
;
req
.
len
=
4
;
req
.
bits
=
8
;
req
.
width
=
SPI17Y_WIDTH_1
;
req
.
ssel
=
0
;
req
.
deass
=
1
;
req
.
ssel_pol
=
SPI17Y_POL_LOW
;
req
.
tx_num
=
0
;
req
.
rx_num
=
0
;
SPI_MasterTrans
(
SPI
,
&
req
);
}
// *****************************************************************************
int
main
(
void
)
{
...
...
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