root / trunk / code / lib / include / libdragonfly / encoders.h @ 1429
History | View | Annotate | Download (2 KB)
| 1 | /**
|
|---|---|
| 2 | * |
| 3 | * @file encoders.h |
| 4 | * @brief Contains functions for reading encoder values. |
| 5 | * |
| 6 | * Contains high and low level functions for reading encoders |
| 7 | * including reading out total distance covered, and |
| 8 | * eventually velocity. |
| 9 | * |
| 10 | * @author Colony Project, CMU Robotics Club |
| 11 | */ |
| 12 | |
| 13 | /**
|
| 14 | * @addtogroup encoders |
| 15 | * @{
|
| 16 | **/ |
| 17 | |
| 18 | #ifndef __ENCODERS_H__
|
| 19 | #define __ENCODERS_H__
|
| 20 | |
| 21 | |
| 22 | #ifndef LEFT
|
| 23 | /** @brief Left wheel **/
|
| 24 | #define LEFT 0 |
| 25 | #endif
|
| 26 | #ifndef RIGHT
|
| 27 | /** @brief Right wheel **/
|
| 28 | #define RIGHT 1 |
| 29 | #endif
|
| 30 | |
| 31 | /** @brief Max value of valid encoder reading. **/
|
| 32 | #define ENCODER_MAX 1024 |
| 33 | |
| 34 | /** @brief Magnet misaligned - likely distance from encoder problem. **/
|
| 35 | #define ENCODER_MAGNET_FAILURE 1025 |
| 36 | /** @brief Encoder misaligned - likely on XY plane. **/
|
| 37 | #define ENCODER_MISALIGNED 1027 |
| 38 | /** @brief Not enough time has passed - encoders not initialized in hardware. **/
|
| 39 | #define ENCODER_DATA_NOT_READY 1026 |
| 40 | |
| 41 | /** @brief delay_ms argument after a full read is complete **/
|
| 42 | #define ENCODER_DELAY 20 |
| 43 | |
| 44 | //Data invalid flags (hardware failure):
|
| 45 | #define OCF _BV(4) |
| 46 | #define COF _BV(3) |
| 47 | |
| 48 | //Data invalid alarm (May be invalid):
|
| 49 | #define LIN _BV(2) |
| 50 | |
| 51 | #define MagINCn _BV(1) |
| 52 | #define MagDECn _BV(0) |
| 53 | |
| 54 | /** @brief Buffer size **/
|
| 55 | #define BUFFER_SIZE 46 |
| 56 | |
| 57 | #define ERR_VEL 1024 |
| 58 | |
| 59 | /** @brief Initialize encoders. **/
|
| 60 | void encoders_init(void); |
| 61 | /** @brief Read instantaneous encoder value. **/
|
| 62 | int encoder_read(char encoder); |
| 63 | |
| 64 | /** @brief Get total distance traveled.
|
| 65 | * @note Simply calls encoder_get_dx. |
| 66 | **/ |
| 67 | int encoder_get_x(char encoder); |
| 68 | |
| 69 | /** @brief Get instantaneous velocity. **/
|
| 70 | int encoder_get_v(char encoder); |
| 71 | |
| 72 | /** @brief Get total distance traveled. **/
|
| 73 | int encoder_get_dx(char encoder); |
| 74 | /** @brief Reset distance counter. **/
|
| 75 | void encoder_rst_dx(char encoder); |
| 76 | /** @brief Get time count: The number of encoder reads that have occurred. **/
|
| 77 | int encoder_get_tc(void); |
| 78 | /** @brief Reset the time count. **/
|
| 79 | void encoder_rst_tc(void); |
| 80 | |
| 81 | /** @brief Waits for the next n encoder reading, then returns. **/
|
| 82 | void encoder_wait( int nReadings ); |
| 83 | |
| 84 | /**@}**/ //end group |
| 85 | |
| 86 | #endif
|