![]() |
LibDriver ISD17XX
|
isd17xx interface driver modules More...
Functions | |
| uint8_t | isd17xx_interface_spi_init (void) |
| interface spi bus init | |
| uint8_t | isd17xx_interface_spi_deinit (void) |
| interface spi bus deinit | |
| uint8_t | isd17xx_interface_spi_read (uint8_t reg, uint8_t *buf, uint16_t len) |
| interface spi bus read | |
| uint8_t | isd17xx_interface_spi_write (uint8_t reg, uint8_t *buf, uint16_t len) |
| interface spi bus write | |
| uint8_t | isd17xx_interface_spi_transmit (uint8_t *tx, uint8_t *rx, uint16_t len) |
| interface spi bus transmit | |
| uint8_t | isd17xx_interface_gpio_reset_init (void) |
| interface gpio reset init | |
| uint8_t | isd17xx_interface_gpio_reset_deinit (void) |
| interface gpio reset deinit | |
| uint8_t | isd17xx_interface_gpio_reset_write (uint8_t value) |
| interface gpio reset write | |
| void | isd17xx_interface_delay_ms (uint32_t ms) |
| interface delay ms | |
| void | isd17xx_interface_debug_print (const char *const fmt,...) |
| interface print format data | |
| void | isd17xx_interface_receive_callback (uint16_t type) |
| interface receive callback | |
isd17xx interface driver modules
| void isd17xx_interface_debug_print | ( | const char *const | fmt, |
| ... ) |
interface print format data
| [in] | fmt | format data |
Definition at line 160 of file driver_isd17xx_interface_template.c.
| void isd17xx_interface_delay_ms | ( | uint32_t | ms | ) |
interface delay ms
| [in] | ms | time |
Definition at line 150 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_gpio_reset_deinit | ( | void | ) |
interface gpio reset deinit
Definition at line 127 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_gpio_reset_init | ( | void | ) |
interface gpio reset init
Definition at line 115 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_gpio_reset_write | ( | uint8_t | value | ) |
interface gpio reset write
| [in] | value | written value |
Definition at line 140 of file driver_isd17xx_interface_template.c.
| void isd17xx_interface_receive_callback | ( | uint16_t | type | ) |
interface receive callback
| [in] | type | interrupt type |
Definition at line 170 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_spi_deinit | ( | void | ) |
interface spi bus deinit
Definition at line 58 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_spi_init | ( | void | ) |
interface spi bus init
Definition at line 46 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_spi_read | ( | uint8_t | reg, |
| uint8_t * | buf, | ||
| uint16_t | len ) |
interface spi bus read
| [in] | reg | register address |
| [out] | *buf | pointer to a data buffer |
| [in] | len | length of data buffer |
Definition at line 73 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_spi_transmit | ( | uint8_t * | tx, |
| uint8_t * | rx, | ||
| uint16_t | len ) |
interface spi bus transmit
| [in] | *tx | pointer to a tx data buffer |
| [out] | *rx | pointer to a rx data buffer |
| [in] | len | length of the data buffer |
Definition at line 103 of file driver_isd17xx_interface_template.c.
| uint8_t isd17xx_interface_spi_write | ( | uint8_t | reg, |
| uint8_t * | buf, | ||
| uint16_t | len ) |
interface spi bus write
| [in] | reg | register address |
| [in] | *buf | pointer to a data buffer |
| [in] | len | length of data buffer |
Definition at line 88 of file driver_isd17xx_interface_template.c.