TOP Contributors

  1. MIKROE (2657 codes)
  2. Alcides Ramos (355 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 (136904 times)
  2. FAT32 Library (70035 times)
  3. Network Ethernet Library (56005 times)
  4. USB Device Library (46308 times)
  5. Network WiFi Library (41934 times)
  6. FT800 Library (41236 times)
  7. GSM click (29024 times)
  8. PID Library (26434 times)
  9. mikroSDK (26402 times)
  10. microSD click (25387 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

RS485 3V3 click

Rating:

0

Author: MIKROE

Last Updated: 2024-04-03

Package Version: 2.1.0.15

mikroSDK Library: 2.0.0.0

Category: RS485

Downloaded: 141 times

Not followed.

License: MIT license  

RS485 click 3.3V is a RS422/485 transceiver Click board™, which can be used as an interface between the TTL level UART and the RS422/485 communication bus. It features a half-duplex communication capability, bus Idle, open and short-circuit detection, glitch free power-up and power-down for hot-plugging applications, thermal shutdown, and more. It is well suited for transmitting data packets over long distances and noisy areas, using the twisted wire bus, which offers good electromagnetic interferences (EMI) immunity. ESD protection of the transceiver IC ensures reliable operation, exceeding 16kV for human body model (HBM).

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "RS485 3V3 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "RS485 3V3 click" changes.

Do you want to report abuse regarding "RS485 3V3 click".

  • mikroSDK Library 1.0.0.0
  • Comments (0)

mikroSDK Library Blog


RS485 3V3 click

RS485 click 3.3V is a RS422/485 transceiver Click board™, which can be used as an interface between the TTL level UART and the RS422/485 communication bus. It features a half-duplex communication capability, bus Idle, open and short-circuit detection, glitch free power-up and power-down for hot-plugging applications, thermal shutdown, and more. It is well suited for transmitting data packets over long distances and noisy areas, using the twisted wire bus, which offers good electromagnetic interferences (EMI) immunity. ESD protection of the transceiver IC ensures reliable operation, exceeding 16kV for human body model (HBM).

rs48533v_click.png

click Product page


Click library

  • Author : Stefan Ilic
  • Date : Jun 2021.
  • Type : UART type

Software Support

We provide a library for the RS4853V3 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 RS4853V3 Click driver.

Standard key functions :

  • rs4853v3_cfg_setup Config Object Initialization function.

    void rs4853v3_cfg_setup ( rs4853v3_cfg_t *cfg );
  • rs4853v3_init Initialization function.

    err_t rs4853v3_init ( rs4853v3_t *ctx, rs4853v3_cfg_t *cfg );

Example key functions :

  • rs4853v3_generic_read This function reads a desired number of data bytes by using UART serial interface.

    err_t rs4853v3_generic_read ( rs4853v3_t *ctx, char *data_buf, uint16_t max_len );
  • rs4853v3_send_command This function sends a command by using UART serial interface.

    void rs4853v3_send_command ( rs4853v3_t *ctx, char *command );

Example Description

This example reads and processes data from RS485 3V3 clicks.

The demo application is composed of two sections :

Application Init

Initializes driver and wake-up module.

void application_init ( void ) {
    log_cfg_t log_cfg;
    rs4853v3_cfg_t cfg;

    /** 
     * 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 );

    //  Click initialization.

    rs4853v3_cfg_setup( &cfg );
    RS4853V3_MAP_MIKROBUS( cfg, MIKROBUS_1 );
    rs4853v3_init( &rs4853v3, &cfg );
    log_info( &logger, " Application Task " );
    Delay_ms ( 100 );

#ifdef DEMO_APP_TRANSMITTER
    log_printf( &logger, "------------------\r\n" );
    log_printf( &logger, "    Send data:    \r\n" );
    log_printf( &logger, "      MikroE      \r\n" );
    log_printf( &logger, "------------------\r\n" );
    log_printf( &logger, "  Transmit data   \r\n" );
    Delay_ms ( 1000 );

#endif

#ifdef DEMO_APP_RECEIVER 
    log_printf( &logger, "------------------\r\n" );

    log_printf( &logger, "   Receive data  \r\n" );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
#endif

    log_printf( &logger, "------------------\r\n" );
}

Application Task

Reads the received data and parses it.


void application_task ( void ) {  
#ifdef DEMO_APP_RECEIVER 
    rs4853v3_process( );
    if ( current_rsp_buf > 0 ) {
        log_printf( &logger, "%s", current_rsp_buf );
        rs4853v3_clear_current_rsp_buf( );
    }
#endif 

#ifdef DEMO_APP_TRANSMITTER
    rs4853v3_send_command( &rs4853v3, &demo_message[ 0 ] );
    log_printf( &logger, "\t%s",  &demo_message[ 0 ] );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    log_printf( &logger, "------------------\r\n" ); 
#endif   
}

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.RS4853V3

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. UART terminal is available in all MikroElektronika compilers.


ALSO FROM THIS AUTHOR

LDC 1101 click

0

LDC1101 click is an inductance-to-digital converter Click Board. It is designed for a range of different applications, based on the inductivity measurements.

[Learn More]

AudioAMP 12 click

0

AudioAMP 12 Click is a compact add-on board that can reproduce input signals with desired volume and power levels at sound-producing output elements. This board features the TS2007FC, a filter-free class-D audio amplifier from STMicroelectronics. This amplifier can drive up to 1.4W into an 8Ω load at 5V, achieving better efficiency than a typical class AB audio power amplifier. In addition, it can drive up to 2.3W but into a 4Ω load at 3V and with a 1% THD+N at maximum.

[Learn More]

LP WiFi click

0

LP WiFi Click is a compact add-on board that represents an ultra-low-power Wi-Fi solution. This board features the DA16200, a fully integrated Wi-Fi module with ultra-low power consumption, best RF performance, and a comfortable development environment from Dialog Semiconductor.

[Learn More]