mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
Qencoder implementations for imxrt, stm32f7, stm32h7, stm32l4 and tivia don't support QEIOC_SETPOSMAX
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
51b24c4bad
commit
2b3106fb47
@@ -339,6 +339,7 @@ static const struct qe_ops_s g_qecallbacks =
|
||||
.setup = imxrt_setup,
|
||||
.shutdown = imxrt_shutdown,
|
||||
.position = imxrt_position,
|
||||
.setposmax = NULL, /* not supported yet */
|
||||
.reset = imxrt_reset,
|
||||
.ioctl = imxrt_ioctl,
|
||||
};
|
||||
|
||||
@@ -266,6 +266,7 @@ static const struct qe_ops_s g_qecallbacks =
|
||||
.setup = stm32_setup,
|
||||
.shutdown = stm32_shutdown,
|
||||
.position = stm32_position,
|
||||
.setposmax = NULL, /* not supported yet */
|
||||
.reset = stm32_reset,
|
||||
.ioctl = stm32_ioctl,
|
||||
};
|
||||
|
||||
@@ -266,6 +266,7 @@ static const struct qe_ops_s g_qecallbacks =
|
||||
.setup = stm32_setup,
|
||||
.shutdown = stm32_shutdown,
|
||||
.position = stm32_position,
|
||||
.setposmax = NULL, /* not supported yet */
|
||||
.reset = stm32_reset,
|
||||
.ioctl = stm32_ioctl,
|
||||
};
|
||||
|
||||
@@ -261,6 +261,7 @@ static const struct qe_ops_s g_qecallbacks =
|
||||
.setup = stm32l4_setup,
|
||||
.shutdown = stm32l4_shutdown,
|
||||
.position = stm32l4_position,
|
||||
.setposmax = NULL, /* not supported yet */
|
||||
.reset = stm32l4_reset,
|
||||
.ioctl = stm32l4_ioctl,
|
||||
};
|
||||
|
||||
@@ -110,6 +110,7 @@ static const struct qe_ops_s g_qe_ops =
|
||||
.setup = tiva_qe_setup,
|
||||
.shutdown = tiva_qe_shutdown,
|
||||
.position = tiva_qe_position,
|
||||
.setposmax = NULL, /* not supported yet */
|
||||
.reset = tiva_qe_reset,
|
||||
.ioctl = tiva_qe_ioctl,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user