HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the source code of this file.
Data Structures | |
struct | i2c_op_t |
struct | i2c_task_t |
Macros | |
#define | TW_ARB_LOST TW_MT_ARB_LOST |
#define | I2C_OPS 16 |
#define | I2C_TIMEOUT 10 |
#define | I2C_OP_TIMEOUT _BV(0) |
#define | I2C_OP_LEN _BV(1) |
#define | I2C_OP_ERROR _BV(2) |
#define | I2C_TW_MT_SLA_NACK _BV(3) |
#define | I2C_TW_MR_SLA_NACK _BV(4) |
#define | I2C_TW_MT_DATA_NACK _BV(5) |
#define | I2C_BUS_ERROR _BV(6) |
Typedefs | |
typedef int8_t(* | i2c_callback_t) (void) |
Functions | |
uint8_t | i2c_check_op (int8_t index) |
Check if I2C structure pointer is valid. More... | |
void | i2c_task_init (void) |
Initialize I2C task op list NOTE: We ASSUME all i2c_task_op[].buf are statically allocated. More... | |
void | i2c_task_free_ops (void) |
Free all allocated memory for i2c_[] pointers NOTE: We ASSUME all i2c_task_op[].buf are statically allocated. More... | |
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. More... | |
int8_t | i2c_task_next_op (void) |
I2C task ISR callback function. More... | |
void | i2c_task_run (void) |
Run all valid i2c_task_op[] tasks. More... | |
void | i2c_init (uint32_t speed) |
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks. More... | |
int8_t | i2c_ok (void) |
check if I2C trasnaction detected an error More... | |
int8_t | i2c_done (void) |
Is i2c structure done sending/receiving ? More... | |
int8_t | i2c_task_done (void) |
Are all i2c_task_op[] pointers done sending/receiving ? More... | |
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. More... | |
void | i2c_send_start (void) |
Send I2C START and enable interrupts. More... | |
void | i2c_send_stop (void) |
Send I2C STOP and disable interrupts. More... | |
void | i2c_timer (void) |
I2C timer task - check for I2C operation timeouts. More... | |
void | i2c_print_error (i2c_op_t *o) |
Display Errors for i2c_task_op[index]. More... | |
void | i2c_display_task_errors (void) |
Display any task errors. More... | |
Variables | |
i2c_op_t | i2c |
I2C interrupt state registers. More... | |
i2c_callback_t | i2c_callback |
i2c_task_t | i2c_task |
I2C task state. More... | |
i2c_op_t * | i2c_task_op [I2C_OPS] |
I2C task list. More... | |
typedef int8_t(* i2c_callback_t) (void) |
uint8_t i2c_check_op | ( | int8_t | index | ) |
Check if I2C structure pointer is valid.
[in] | index | index of i2c_task_op[] array |
Definition at line 40 of file i2c.c.
Referenced by i2c_task_free_ops(), i2c_task_next_op(), and i2c_task_run().
void i2c_display_task_errors | ( | void | ) |
int8_t i2c_done | ( | ) |
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.
[in] | address | I2C address |
[in] | mode | TW_READ or TW_WRITE |
[in] | *buf | pointer to buffer for send or receive |
[in] | len | size of buffer to read or write |
Definition at line 407 of file i2c.c.
Referenced by i2c_rtc_read(), and i2c_rtc_write().
void i2c_init | ( | uint32_t | speed | ) |
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
=========================================================================
Definition at line 316 of file i2c.c.
Referenced by i2c_rtc_init(), and main().
int8_t i2c_ok | ( | ) |
void i2c_print_error | ( | i2c_op_t * | o | ) |
Display Errors for i2c_task_op[index].
[in] | index | index of i2c_task_op[] array |
Definition at line 660 of file i2c.c.
Referenced by i2c_display_task_errors().
void i2c_send_start | ( | ) |
Send I2C START and enable interrupts.
Definition at line 451 of file i2c.c.
Referenced by i2c_fn(), i2c_task_next_op(), and i2c_task_run().
void i2c_send_stop | ( | ) |
Send I2C STOP and disable interrupts.
Definition at line 468 of file i2c.c.
Referenced by i2c_next(), i2c_task_next_op(), and ISR().
int8_t i2c_task_done | ( | ) |
void i2c_task_free_ops | ( | ) |
void i2c_task_init | ( | ) |
int8_t i2c_task_next_op | ( | ) |
I2C task ISR callback function.
Definition at line 163 of file i2c.c.
Referenced by i2c_task_run().
i2c_op_t* i2c_task_op_add | ( | uint8_t | address, |
uint8_t | mode, | ||
uint8_t * | buf, | ||
uint8_t | len | ||
) |
void i2c_task_run | ( | ) |
void i2c_timer | ( | ) |
I2C timer task - check for I2C operation timeouts.
Definition at line 503 of file i2c.c.
Referenced by i2c_init().
i2c_op_t i2c |
I2C interrupt state registers.
Definition at line 22 of file i2c.c.
Referenced by i2c_done(), i2c_fn(), i2c_init(), i2c_ok(), i2c_print_error(), i2c_send_start(), i2c_send_stop(), i2c_task_next_op(), i2c_task_run(), i2c_timer(), and ISR().
i2c_callback_t i2c_callback |
Definition at line 28 of file i2c.c.
Referenced by i2c_fn(), i2c_next(), and i2c_task_run().
i2c_task_t i2c_task |
I2C task state.
Definition at line 31 of file i2c.c.
Referenced by i2c_display_task_errors(), i2c_init(), i2c_task_done(), i2c_task_init(), i2c_task_next_op(), i2c_task_run(), ISR(), and main().
I2C task list.
Definition at line 33 of file i2c.c.
Referenced by i2c_check_op(), i2c_display_task_errors(), i2c_init(), i2c_task_free_ops(), i2c_task_init(), i2c_task_next_op(), and i2c_task_run().