HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
42 if(index < 0 || index >=
I2C_OPS)
53 printf(
"I2C op[%d]->buf == NULL\n",(
int) index);
58 printf(
"I2C op[%d]->len == 0\n",(
int) index);
121 TWSR &= ~(_BV(TWPS0) | _BV(TWPS1));
149 o->
address = (address << 1) | (mode & 1);
263 TWSR &= ~(_BV(TWPS0) | _BV(TWPS1));
297 TWCR = _BV(TWEN) | _BV(TWINT);
299 TWSR &= ~(_BV(TWPS0) | _BV(TWPS1));
319 uint16_t rate = ((F_CPU / speed) - 16) / 2;
323 printf(
"i2c_init prescale overflow\n");
336 GPIO_PIN_LATCH_HI(SCL);
337 GPIO_PIN_LATCH_HI(SDA);
342 TWCR = _BV(TWEN) | _BV(TWINT);
348 TWSR &= ~(_BV(TWPS0) | _BV(TWPS1));
357 printf(
"i2c_timer init failed\n");
407 uint8_t
i2c_fn(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
425 TWSR &= ~(_BV(TWPS0) | _BV(TWPS1));
462 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT) | _BV(TWSTA);
479 TWCR = _BV(TWEN) | _BV(TWINT) | _BV(TWSTO);
524 uint8_t status = TW_STATUS;
556 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT);
569 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT);
590 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT) | _BV(TWEA);
599 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT);
603 case TW_MR_DATA_NACK:
618 TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWINT) | _BV(TWSTA);
638 case TW_MT_DATA_NACK:
662 int flags = o->
flags;
674 printf(
" TW_MR_SLA_NACK\n");
676 printf(
" TW_MT_SLA_NACK\n");
678 printf(
" TW_MT_DATA_NACK\n");
691 printf(
"task: %d\n", (
int) i);
i2c_op_t * i2c_task_op[I2C_OPS]
I2C task list.
int8_t i2c_task_done()
Are all i2c_task_op[] pointers done sending/receiving ?
MEMSPACE int printf(const char *format,...)
uint8_t i2c_check_op(int8_t index)
Check if I2C structure pointer is valid.
i2c_callback_t i2c_callback
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
i2c_op_t i2c
I2C interrupt state registers.
void i2c_display_task_errors()
Display any task errors.
int8_t i2c_done()
Is i2c structure done sending/receiving ?
void i2c_init(uint32_t speed)
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
int8_t i2c_ok()
check if I2C trasnaction detected an error
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
void i2c_timer()
I2C timer task - check for I2C operation timeouts.
#define I2C_TW_MR_SLA_NACK
ISR(TWI_vect)
I2C ISR for send/receive.
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.
void i2c_task_init()
Initialize I2C task op list NOTE: We ASSUME all i2c_task_op[].buf are statically allocated.
static int8_t i2c_init_status
void i2c_task_run()
Run all valid i2c_task_op[] tasks.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
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.
int8_t i2c_task_next_op()
I2C task ISR callback function.
void i2c_send_start()
Send I2C START and enable interrupts.
static void i2c_next()
Is there anything else to send ? Called after I2C transaction finishes.
void i2c_task_free_ops()
Free all allocated memory for i2c_[] pointers NOTE: We ASSUME all i2c_task_op[].buf are statically al...
void i2c_send_stop()
Send I2C STOP and disable interrupts.
#define I2C_TW_MT_SLA_NACK
i2c_task_t i2c_task
I2C task state.
int8_t(* i2c_callback_t)(void)
I2C task list @ brief I2C callback function Used when automattically sending several transactions.
MEMSPACE int set_timers(void(*handler)(void), int timer __attribute__((unused)))
Install a user timer task.
void delayus(uint32_t us)
Delay microseconds using AVR acr-libc _delay_us() function.
void i2c_print_error(i2c_op_t *o)
Display Errors for i2c_task_op[index].
#define I2C_TW_MT_DATA_NACK