HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
25 #define TW_ARB_LOST TW_MT_ARB_LOST
30 #define I2C_TIMEOUT 10
32 #define I2C_OP_TIMEOUT _BV(0)
33 #define I2C_OP_LEN _BV(1)
34 #define I2C_OP_ERROR _BV(2)
35 #define I2C_TW_MT_SLA_NACK _BV(3)
36 #define I2C_TW_MR_SLA_NACK _BV(4)
37 #define I2C_TW_MT_DATA_NACK _BV(5)
38 #define I2C_BUS_ERROR _BV(6)
87 uint8_t
i2c_fn ( uint8_t address , uint8_t mode , uint8_t *buf , uint8_t len );
void i2c_task_free_ops(void)
Free all allocated memory for i2c_[] pointers NOTE: We ASSUME all i2c_task_op[].buf are statically al...
void i2c_print_error(i2c_op_t *o)
Display Errors for i2c_task_op[index].
int8_t i2c_ok(void)
check if I2C trasnaction detected an error
void i2c_task_init(void)
Initialize I2C task op list NOTE: We ASSUME all i2c_task_op[].buf are statically allocated.
i2c_callback_t i2c_callback
int8_t i2c_task_done(void)
Are all i2c_task_op[] pointers done sending/receiving ?
i2c_op_t i2c
I2C interrupt state registers.
void i2c_timer(void)
I2C timer task - check for I2C operation timeouts.
void i2c_init(uint32_t speed)
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
i2c_op_t * i2c_task_op[I2C_OPS]
I2C task list.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
void i2c_task_run(void)
Run all valid i2c_task_op[] tasks.
int8_t(* i2c_callback_t)(void)
uint8_t i2c_check_op(int8_t index)
Check if I2C structure pointer is valid.
void i2c_display_task_errors(void)
Display any task errors.
i2c_task_t i2c_task
I2C task state.
void i2c_send_start(void)
Send I2C START and enable interrupts.
i2c_op_t * i2c_task_op_add(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
I2C setup new OP but do not run it yet.
uint8_t i2c_fn(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
I2C setup new OP but do not run it yet.
void i2c_send_stop(void)
Send I2C STOP and disable interrupts.
int8_t i2c_task_next_op(void)
I2C task ISR callback function.
int8_t i2c_done(void)
Is i2c structure done sending/receiving ?