spiisolator8 2.1.0.0
|
API for configuring and manipulating SPI Isolator 8 Click driver. More...
Topics | |
SPI Isolator 8 MikroBUS Map | |
MikroBUS pin mapping of SPI Isolator 8 Click driver. | |
Spiisolator8_set | |
Functions | |
void | spiisolator8_cfg_setup (spiisolator8_cfg_t *cfg) |
SPI Isolator 8 configuration object setup function. | |
err_t | spiisolator8_init (spiisolator8_t *ctx, spiisolator8_cfg_t *cfg) |
SPI Isolator 8 initialization function. | |
void | spiisolator8_default_cfg (spiisolator8_t *ctx) |
SPI Isolator 8 default configuration function. | |
void | spiisolator8_enc_enable (spiisolator8_t *ctx) |
SPI Isolator 8 enable side 1 function. | |
void | spiisolator8_enc_disable (spiisolator8_t *ctx) |
SPI Isolator 8 disable side 1 function. | |
void | spiisolator8_enp_enable (spiisolator8_t *ctx) |
SPI Isolator 8 enable side 2 function. | |
void | spiisolator8_enp_disable (spiisolator8_t *ctx) |
SPI Isolator 8 disable side 2 function. | |
uint8_t | spiisolator8_get_fault (spiisolator8_t *ctx) |
SPI Isolator 8 get fault function. | |
err_t | spiisolator8_write (spiisolator8_t *ctx, uint8_t *data_in, uint8_t len) |
SPI Isolator 8 data writing function. | |
err_t | spiisolator8_read (spiisolator8_t *ctx, uint8_t *data_out, uint8_t len_out) |
SPI Isolator 8 data reading function. | |
err_t | spiisolator8_write_then_read (spiisolator8_t *ctx, uint8_t *data_in, uint8_t len_in, uint8_t *data_out, uint8_t len_out) |
SPI Isolator 8 write then read function. | |
err_t | spiisolator8_transfer (spiisolator8_t *ctx, uint8_t *data_in, uint8_t *data_out, uint8_t len) |
SPI Isolator 8 data transfer function. | |
API for configuring and manipulating SPI Isolator 8 Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void spiisolator8_cfg_setup | ( | spiisolator8_cfg_t * | cfg | ) |
SPI Isolator 8 configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See spiisolator8_cfg_t object definition for detailed explanation. |
void spiisolator8_default_cfg | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 default configuration function.
This function executes a default configuration of SPI Isolator 8 click board.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
void spiisolator8_enc_disable | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 disable side 1 function.
This function performs disabling a channel output pins on side 1 of the ISOW7741FBDFMR, Quad-Channel Digital Isolator with Integrated Low-Emissions, Low-Noise DC-DC Converter on the SPI Isolator 8 Click board™.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
void spiisolator8_enc_enable | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 enable side 1 function.
This function performs enabling a channel output pins on side 1 of the ISOW7741FBDFMR, Quad-Channel Digital Isolator with Integrated Low-Emissions, Low-Noise DC-DC Converter on the SPI Isolator 8 Click board™.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
void spiisolator8_enp_disable | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 disable side 2 function.
This function performs disabling a channel output pins on side 2 of the ISOW7741FBDFMR, Quad-Channel Digital Isolator with Integrated Low-Emissions, Low-Noise DC-DC Converter on the SPI Isolator 8 Click board™.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
void spiisolator8_enp_enable | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 enable side 2 function.
This function performs enabling a channel output pins on side 2 of the ISOW7741FBDFMR, Quad-Channel Digital Isolator with Integrated Low-Emissions, Low-Noise DC-DC Converter on the SPI Isolator 8 Click board™.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
uint8_t spiisolator8_get_fault | ( | spiisolator8_t * | ctx | ) |
SPI Isolator 8 get fault function.
This function get fault state, alert signal if power converter is not operating properly of the ISOW7741FBDFMR, Quad-Channel Digital Isolator with Integrated Low-Emissions, Low-Noise DC-DC Converter on the SPI Isolator 8 Click board™.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
0
- Power converter is not operating properly, 1
- Power converter is operating properly. err_t spiisolator8_init | ( | spiisolator8_t * | ctx, |
spiisolator8_cfg_t * | cfg ) |
SPI Isolator 8 initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See spiisolator8_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. err_t spiisolator8_read | ( | spiisolator8_t * | ctx, |
uint8_t * | data_out, | ||
uint8_t | len_out ) |
SPI Isolator 8 data reading function.
This function reads a desired number of data bytes by using SPI serial interface.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
[out] | data_out | : Output read data. |
[in] | len | : Number of bytes to be read. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. err_t spiisolator8_transfer | ( | spiisolator8_t * | ctx, |
uint8_t * | data_in, | ||
uint8_t * | data_out, | ||
uint8_t | len ) |
SPI Isolator 8 data transfer function.
This function writes and reads a desired number of data bytes by using SPI serial interface.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
[in] | data_in | : Data to be written. |
[out] | data_out | : Output read data. |
[in] | len | : Number of bytes to be transferred (write/read). |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. err_t spiisolator8_write | ( | spiisolator8_t * | ctx, |
uint8_t * | data_in, | ||
uint8_t | len ) |
SPI Isolator 8 data writing function.
This function writes a desired number of data bytes by using SPI serial interface.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
[in] | data_in | : Data to be written. |
[in] | len | : Number of bytes to be written. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. err_t spiisolator8_write_then_read | ( | spiisolator8_t * | ctx, |
uint8_t * | data_in, | ||
uint8_t | len_in, | ||
uint8_t * | data_out, | ||
uint8_t | len_out ) |
SPI Isolator 8 write then read function.
This function writes and then reads a desired number of data bytes by using SPI serial interface.
[in] | ctx | : Click context object. See spiisolator8_t object definition for detailed explanation. |
[in] | data_in | : Data to be written. |
[in] | len_in | : Number of bytes to be written. |
[out] | data_out | : Output read data. |
[in] | len_out | : Number of bytes to be read. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation.