This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
learning-by-doing
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
removed parameter from LedDriver_Destroy() function
master
T. Meissner
10 years ago
parent
cc737e8225
commit
e4882ad36a
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tdd_for_embedded_c/chapter04/src/LedDriver.c
+1
-1
tdd_for_embedded_c/chapter04/src/LedDriver.h
+ 1
- 1
tdd_for_embedded_c/chapter04/src/LedDriver.c
View File
@ -50,7 +50,7 @@ void LedDriver_Create(uint16_t *address) {
}
void
LedDriver_Destroy
(
uint16_t
*
address
)
{
void
LedDriver_Destroy
(
void
)
{
}
+ 1
- 1
tdd_for_embedded_c/chapter04/src/LedDriver.h
View File
@ -5,7 +5,7 @@
void
LedDriver_Create
(
uint16_t
*
address
)
;
void
LedDriver_Destroy
(
uint16_t
*
address
)
;
void
LedDriver_Destroy
(
void
)
;
void
LedDriver_TurnOn
(
int
ledNumber
)
;
void
LedDriver_TurnOff
(
int
ledNumber
)
;
void
LedDriver_TurnAllOn
(
void
)
;
Write
Preview
Loading…
Cancel
Save