add some more register definition

git-svn-id: https://svn.gnumonks.org/trunk/librfid@1862 e0336214-984f-0b4b-a45f-81c69e1f0ede
This commit is contained in:
laforge 2006-08-16 00:19:51 +00:00
parent 2b672c96e2
commit 6af93d9408
1 changed files with 16 additions and 0 deletions

View File

@ -218,4 +218,20 @@ enum rc632_reg_channel_redundancy {
RC632_CR_CRC3309 = 0x20,
};
enum rc632_reg_timer_control {
RC632_TMR_START_TX_BEGIN = 0x01,
RC632_TMR_START_TX_END = 0x02,
RC632_TMR_STOP_RX_BEGIN = 0x04,
RC632_TMR_STOP_RX_END = 0x08,
};
enum rc632_reg_timer_irq {
RC632_IRQ_LO_ALERT = 0x01,
RC632_IRQ_HI_ALERT = 0x02,
RC632_IRQ_IDLE = 0x04,
RC632_IRQ_RX = 0x08,
RC632_IRQ_TX = 0x10,
RC632_IRQ_TIMER = 0x20,
RC632_IRQ_SET = 0x80,
};