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
cs
firmware
Commits
16a8325b
Commit
16a8325b
authored
5 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
chore(pushbuttons): code style
parent
8ffaa150
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
lib/card10/pb.c
+54
-54
54 additions, 54 deletions
lib/card10/pb.c
with
54 additions
and
54 deletions
lib/card10/pb.c
+
54
−
54
View file @
16a8325b
...
...
@@ -43,88 +43,88 @@
/******************************************************************************/
int
PB_Init
(
void
)
{
int
retval
=
E_NO_ERROR
;
unsigned
int
i
;
int
retval
=
E_NO_ERROR
;
unsigned
int
i
;
// If we have a port expander, its pins are already configured
if
(
!
portexpander_detected
())
{
// Enable pushbutton inputs
for
(
i
=
0
;
i
<
num_pbs
;
i
++
)
{
if
(
GPIO_Config
(
&
pb_pin
[
i
])
!=
E_NO_ERROR
)
{
retval
=
E_UNKNOWN
;
}
}
}
// If we have a port expander, its pins are already configured
if
(
!
portexpander_detected
())
{
// Enable pushbutton inputs
for
(
i
=
0
;
i
<
num_pbs
;
i
++
)
{
if
(
GPIO_Config
(
&
pb_pin
[
i
])
!=
E_NO_ERROR
)
{
retval
=
E_UNKNOWN
;
}
}
}
return
retval
;
return
retval
;
}
/******************************************************************************/
int
PB_RegisterCallback
(
unsigned
int
pb
,
pb_callback
callback
)
{
MXC_ASSERT
(
pb
<
num_pbs
);
MXC_ASSERT
(
pb
<
num_pbs
);
// TODO: portexpander support
if
(
callback
)
{
// Register callback
GPIO_RegisterCallback
(
&
pb_pin
[
pb
],
callback
,
(
void
*
)
pb
);
// TODO: portexpander support
if
(
callback
)
{
// Register callback
GPIO_RegisterCallback
(
&
pb_pin
[
pb
],
callback
,
(
void
*
)
pb
);
// Configure and enable interrupt
GPIO_IntConfig
(
&
pb_pin
[
pb
],
GPIO_INT_EDGE
,
GPIO_INT_FALLING
);
GPIO_IntEnable
(
&
pb_pin
[
pb
]);
NVIC_EnableIRQ
((
IRQn_Type
)
MXC_GPIO_GET_IRQ
(
pb_pin
[
pb
].
port
));
}
else
{
// Disable interrupt and clear callback
GPIO_IntDisable
(
&
pb_pin
[
pb
]);
GPIO_RegisterCallback
(
&
pb_pin
[
pb
],
NULL
,
NULL
);
}
// Configure and enable interrupt
GPIO_IntConfig
(
&
pb_pin
[
pb
],
GPIO_INT_EDGE
,
GPIO_INT_FALLING
);
GPIO_IntEnable
(
&
pb_pin
[
pb
]);
NVIC_EnableIRQ
((
IRQn_Type
)
MXC_GPIO_GET_IRQ
(
pb_pin
[
pb
].
port
));
}
else
{
// Disable interrupt and clear callback
GPIO_IntDisable
(
&
pb_pin
[
pb
]);
GPIO_RegisterCallback
(
&
pb_pin
[
pb
],
NULL
,
NULL
);
}
return
E_NO_ERROR
;
return
E_NO_ERROR
;
}
//******************************************************************************
void
PB_IntEnable
(
unsigned
int
pb
)
{
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntEnable
(
&
pb_pin
[
pb
]);
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntEnable
(
&
pb_pin
[
pb
]);
}
//******************************************************************************
void
PB_IntDisable
(
unsigned
int
pb
)
{
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntDisable
(
&
pb_pin
[
pb
]);
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntDisable
(
&
pb_pin
[
pb
]);
}
//******************************************************************************
void
PB_IntClear
(
unsigned
int
pb
)
{
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntClr
(
&
pb_pin
[
pb
]);
// TODO: portexpander support
MXC_ASSERT
(
pb
<
num_pbs
);
GPIO_IntClr
(
&
pb_pin
[
pb
]);
}
//******************************************************************************
int
PB_Get
(
unsigned
int
pb
)
{
static
const
uint8_t
expander_pins
[]
=
{
5
,
0x0
,
3
,
6
};
MXC_ASSERT
(
pb
<
4
);
switch
(
pb
)
{
case
1
:
case
3
:
case
4
:
if
(
portexpander_detected
())
{
uint8_t
port
=
portexpander_get
();
return
(
port
&
(
1
<<
expander_pins
[
pb
-
1
]))
==
0
;
}
else
{
return
GPIO_InGet
(
&
pb_pin
[
pb
-
1
])
==
0
;
}
break
;
case
2
:
return
MAX77650_getDebounceStatusnEN0
();
break
;
}
return
0
;
static
const
uint8_t
expander_pins
[]
=
{
5
,
0x0
,
3
,
6
};
MXC_ASSERT
(
pb
<
4
);
switch
(
pb
)
{
case
1
:
case
3
:
case
4
:
if
(
portexpander_detected
())
{
uint8_t
port
=
portexpander_get
();
return
(
port
&
(
1
<<
expander_pins
[
pb
-
1
]))
==
0
;
}
else
{
return
GPIO_InGet
(
&
pb_pin
[
pb
-
1
])
==
0
;
}
break
;
case
2
:
return
MAX77650_getDebounceStatusnEN0
();
break
;
}
return
0
;
}
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