summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-19 19:35:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-19 19:35:52 +0000
commitef92b45bc404a1aaf0ab43a1603712f9bfc72311 (patch)
tree562a3dcd397e30f4fce128e2fc09dcaaeda4dbac /nuttx/include
parentc5ba205781809f0a9124a1bd04d78c411f536ebf (diff)
downloadpx4-nuttx-ef92b45bc404a1aaf0ab43a1603712f9bfc72311.tar.gz
px4-nuttx-ef92b45bc404a1aaf0ab43a1603712f9bfc72311.tar.bz2
px4-nuttx-ef92b45bc404a1aaf0ab43a1603712f9bfc72311.zip
Remove the PWM pulse count method. It can't be support on current hardware
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4201 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/pwm.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/nuttx/include/nuttx/pwm.h b/nuttx/include/nuttx/pwm.h
index 4cf695b1d..eca721d85 100644
--- a/nuttx/include/nuttx/pwm.h
+++ b/nuttx/include/nuttx/pwm.h
@@ -94,18 +94,12 @@
* PWMIOC_STOP - Stop the pulsed output.
*
* ioctl argument: None
- *
- * PWMIOC_GETPULSECOUNT - Return the number of pulses generated.
- *
- * ioctl argument: A pointer to a pwm_count_t variable that will be used to
- * receive the pulse count
*/
#define PWMIOC_SETCHARACTERISTICS _PWMIOC(1)
#define PWMIOC_GETCHARACTERISTICS _PWMIOC(2)
#define PWMIOC_START _PWMIOC(3)
#define PWMIOC_STOP _PWMIOC(4)
-#define PWMIOC_GETPULSECOUNT _PWMIOC(5)
/****************************************************************************
* Public Types
@@ -118,19 +112,6 @@ struct pwm_info_s
ub16_t duty; /* Duty of the pulse train, "1" to "0" duration */
};
-/* This type is used to return pulse counts */
-
-#ifdef CONFIG_HAVE_LONG_LONG
-typedef uint16_t pwm_count_t;
-#else
-struct pwm_count_s
-{
- uint32_t ms; /* Most significant 32-bits of the 64-count */
- uint32_t ls; /* Least significant 32-bits of the 64-count */
-};
-typedef struct pwm_count_s pwm_count_t;
-#endif
-
/* This structure is a set a callback functions used to call from the upper-
* half, generic PWM driver into lower-half, platform-specific logic that
* supports the low-level timer outputs.
@@ -161,10 +142,6 @@ struct pwm_ops_s
CODE int (*stop)(FAR struct pwm_lowerhalf_s *dev);
- /* Get the number of pulses generated */
-
- CODE int (*pulsecount)(FAR struct pwm_lowerhalf_s *dev, FAR pwm_count_t *count);
-
/* Lower-half logic may support platform-specific ioctl commands */
CODE int (*ioctl)(FAR struct pwm_lowerhalf_s *dev, int cmd, unsigned long arg);