mirror of
https://github.com/apache/nuttx.git
synced 2026-08-29 21:30:44 +00:00
Kinetis:Resolves issues where Freescale moved ACKISO
ACKISO is located in the PMC_REGSC on the majority of the Kinetis SoCs. With the exception of the MK40DXxxxZVLQ10 where ACKISO is located in LLWU_CS
This commit is contained in:
parent
a4b985f865
commit
1324b8c00a
1 changed files with 3 additions and 1 deletions
|
|
@ -232,7 +232,9 @@
|
|||
|
||||
/* LLWU Control and Status Register */
|
||||
|
||||
#define LLWU_CS_ACKISO (1 << 7) /* Bit 7: Acknowledge Isolation */
|
||||
#if !defined(KINETIS_PMC_HAS_REGSC_ACKISO)
|
||||
# define LLWU_CS_ACKISO (1 << 7) /* Bit 7: Acknowledge Isolation */
|
||||
#endif
|
||||
/* Bits 2-6: Reserved */
|
||||
#define LLWU_CS_FLTEP (1 << 1) /* Bit 1: Digital Filter on External Pin */
|
||||
#define LLWU_CS_FLTR (1 << 0) /* Bit 0: Digital Filter on RESET Pin */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue