TOP Contributors

  1. MIKROE (2663 codes)
  2. Alcides Ramos (358 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (137087 times)
  2. FAT32 Library (70232 times)
  3. Network Ethernet Library (56097 times)
  4. USB Device Library (46434 times)
  5. Network WiFi Library (42052 times)
  6. FT800 Library (41383 times)
  7. GSM click (29110 times)
  8. mikroSDK (26559 times)
  9. PID Library (26487 times)
  10. microSD click (25486 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

SPI Isolator 4 click

Rating:

0

Author: MIKROE

Last Updated: 2024-04-03

Package Version: 2.1.0.5

mikroSDK Library: 2.0.0.0

Category: SPI

Downloaded: 37 times

Not followed.

License: MIT license  

SPI Isolator 4 Click is a compact add-on board that contains a digital isolator optimized for a serial peripheral interface. This board features the ADuM341E, a quad-channel 5kVRMS digital isolator from Analog Devices. This board features the ADuM341E, a quad-channel 5kVRMS digital isolator from Analog Devices. This isolation component provides outstanding performance by combining high speed, complementary metal-oxide-semiconductor (CMOS), and monolithic air core transformer technology. Its data channels are independent and available in various configurations with a withstand voltage rating of 5kVrms, and operate with the external supply voltage ranging from 2.25V to 5.5V, providing compatibility with lower voltage systems enabling voltage translation functionality across the isolation barrier.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "SPI Isolator 4 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "SPI Isolator 4 click" changes.

Do you want to report abuse regarding "SPI Isolator 4 click".

  • Information
  • Comments (0)

mikroSDK Library Blog


SPI Isolator 4 click

SPI Isolator 4 Click is a compact add-on board that contains a digital isolator optimized for a serial peripheral interface. This board features the ADuM341E, a quad-channel 5kVRMS digital isolator from Analog Devices. This board features the ADuM341E, a quad-channel 5kVRMS digital isolator from Analog Devices. This isolation component provides outstanding performance by combining high speed, complementary metal-oxide-semiconductor (CMOS), and monolithic air core transformer technology. Its data channels are independent and available in various configurations with a withstand voltage rating of 5kVrms, and operate with the external supply voltage ranging from 2.25V to 5.5V, providing compatibility with lower voltage systems enabling voltage translation functionality across the isolation barrier.

spiisolator4_click.png

click Product page


Click library

  • Author : Mikroe Team
  • Date : Sep 2021.
  • Type : SPI type

Software Support

We provide a library for the SPIIsolator4 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

This library contains API for SPIIsolator4 Click driver.

Standard key functions :

  • spiisolator4_cfg_setup Config Object Initialization function.

    void spiisolator4_cfg_setup ( spiisolator4_cfg_t *cfg );
  • spiisolator4_init Initialization function.

    err_t spiisolator4_init ( spiisolator4_t *ctx, spiisolator4_cfg_t *cfg );
  • spiisolator4_default_cfg Click Default Configuration function.

    err_t spiisolator4_default_cfg ( spiisolator4_t *ctx );

Example key functions :

  • spiisolator4_generic_write SPI Isolator 4 data writing function.

    err_t spiisolator4_generic_write ( spiisolator4_t *ctx, uint8_t reg, uint8_t *data_in, uint8_t len );
  • spiisolator4_generic_read SPI Isolator 4 data reading function.

    
    err_t spiisolator4_generic_read ( spiisolator4_t *ctx, uint8_t reg, uint8_t *data_out, uint8_t len );

- `spiisolator4_set_enable` SPI Isolator 4 enable isolator function.
```c
err_t spiisolator4_set_enable ( spiisolator4_t *ctx, spiisolator4_enable_mode_t en_mode );

Example Description

This library contains API for the SPI Isolator 4 click driver. This demo application shows an example of an SPI Isolator 4 click wired to the nvSRAM 4 click for reading Device ID.

The demo application is composed of two sections :

Application Init

Initialization of SPI module and log UART. After driver initialization, the app sets the default configuration.


void application_init ( void )
{
    log_cfg_t log_cfg;                    /**< Logger config object. */
    spiisolator4_cfg_t spiisolator4_cfg;  /**< Click config object. */

    /** 
     * Logger initialization.
     * Default baud rate: 115200
     * Default log level: LOG_LEVEL_DEBUG
     * @note If USB_UART_RX and USB_UART_TX 
     * are defined as HAL_PIN_NC, you will 
     * need to define them manually for log to work. 
     * See @b LOG_MAP_USB_UART macro definition for detailed explanation.
     */
    LOG_MAP_USB_UART( log_cfg );
    log_init( &logger, &log_cfg );
    log_info( &logger, " Application Init " );

    // Click initialization.

    spiisolator4_cfg_setup( &spiisolator4_cfg );
    SPIISOLATOR4_MAP_MIKROBUS( spiisolator4_cfg, MIKROBUS_1 );
    err_t init_flag  = spiisolator4_init( &spiisolator4, &spiisolator4_cfg );
    if ( SPI_MASTER_ERROR == init_flag )
    {
        log_error( &logger, " Application Init Error. " );
        log_info( &logger, " Please, run program again... " );

        for ( ; ; );
    }

    spiisolator4_default_cfg ( &spiisolator4 );
    log_info( &logger, " Application Task " );
    log_printf( &logger, "--------------------------\r\n" ); 
    Delay_ms ( 100 );
}

Application Task

This is an example that shows the use of an SPI Isolator 4 click board™. Logs Device ID of the nvSRAM 4 click wired to the SPI Isolator 4 board™.
Results are being sent to the Usart Terminal where you can track their changes.


void application_task ( void )
{
    get_device_id( );
    log_printf( &logger, "  Device ID : 0x%.8LX\r\n", device_id ); 
    log_printf( &logger, "--------------------------\r\n" ); 
    Delay_ms ( 1000 );
}

Additional Function

  • get_device_id SPI Isolator 4 get device ID function.
    static void get_device_id ( void );

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.SPIIsolator4

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.


ALSO FROM THIS AUTHOR

Magnetic 6 click

0

Magneto 6 Click features low power three dimensional Hall effect sensor, TLI493D-A2B6, designed for magnetic sensing applications. It measures the magnetic field in X, Y, and Z direction. Each X, Y and Z Hall probe is connected sequentially to a multiplexer, which is then connected to an Analog to Digital Converter (ADC).

[Learn More]

Relay 2 click

5

Relay 2 click carries two LCA717 single-pole, OptoMOS® solid state relays and two screw terminals for connecting the wiring. They are controlled by the microcontroller through RL1 and RL2 pins, which are in place of default mikroBUS AN and PWM pins.

[Learn More]

Pressure 16 click

0

Pressure 16 Click is a compact add-on board that contains a board-mount pressure sensor. This board features the WSEN-PADS (2511020213301), a high-precision MEMS-based digital absolute pressure sensor from Würth Elektronik. It has a fully-calibrated 24-bit pressure output to provide accurate atmospheric pressure data with a configurable host interface that supports both I2C and SPI serial communication and with an intelligent on-chip motion-triggered interrupt feature.

[Learn More]