ismtx 2.0.0.0
Main Page

ISM TX click

‍ISM TX Click is a compact add-on board that contains an ASK and (G)FSK transmitter with a programmable SPI interface. This board features the MAX41460, a UHF sub-GHz ISM/SRD transmitter designed to transmit On-Off Keying (OOK), Amplitude- Shift Keying (ASK), Frequency-Shift Keying (FSK), and Gaussian (G)FSK (or 2GFSK) data from Maxim Integrated.

click Product page


Click library

  • Author : Luka Filipovic
  • Date : Jan 2021.
  • Type : SPI type

Software Support

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

Standard key functions :

  • ismtx_cfg_setup Config Object Initialization function.
    void ismtx_cfg_setup(ismtx_cfg_t *cfg)
    ISM TX configuration object setup function.
    ISM TX Click configuration object.
    Definition ismtx.h:316
  • ismtx_init Initialization function.
    err_t ismtx_init ( ismtx_t *ctx, ismtx_cfg_t *cfg );
    err_t ismtx_init(ismtx_t *ctx, ismtx_cfg_t *cfg)
    ISM TX initialization function.
    ISM TX Click context object.
    Definition ismtx.h:296
  • ismtx_default_cfg Click Default Configuration function.
    err_t ismtx_default_cfg ( ismtx_t *ctx );
    err_t ismtx_default_cfg(ismtx_t *ctx)
    ISM TX default configuration function.

Example key functions :

  • ismtx_set_cfg ISM TX writing configuration.
    err_t ismtx_set_cfg ( ismtx_t *ctx, uint8_t cfg_macro, uint8_t cfg_value )
    err_t ismtx_set_cfg(ismtx_t *ctx, uint8_t cfg_macro, uint8_t cfg_value)
    ISM TX writing configuration.
  • ismtx_set_frequency Setting specific frequency for transmission.
    err_t ismtx_set_frequency ( ismtx_t *ctx, uint32_t freq )
    err_t ismtx_set_frequency(ismtx_t *ctx, uint32_t freq)
    Setting specific frequency for transmission.
  • ismtx_transmit_data Function for transmitting data with preamble byte and lenght.
    err_t ismtx_transmit_data ( ismtx_t *ctx, uint8_t preamble_byte, uint8_t *tx_data, uint8_t tx_data_len );
    err_t ismtx_transmit_data(ismtx_t *ctx, uint8_t preamble_byte, uint8_t *tx_data, uint8_t tx_data_len)
    Function for transmitting data with preamble byte and lenght.

Example Description

‍This application shows capability of ISM TX Click board.

It sets default configuration, and transmits data in manchester encoding with FSK or ASK signal modulation.

The demo application is composed of two sections :

Application Init

‍Initialization of log and communication, set's signal modulation, resets device, and set's default configuration for selected modulation.

void application_init ( void )
{
log_cfg_t log_cfg;
ismtx_cfg_t ismtx_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
ismtx_cfg_setup( &ismtx_cfg );
ISMTX_MAP_MIKROBUS( ismtx_cfg, MIKROBUS_1 );
if ( SPI_MASTER_ERROR == ismtx_init( &ismtx, &ismtx_cfg ) )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
ismtx.modulation = ISM_TX_MODULATION_FSK;
ismtx_soft_reset( &ismtx );
if ( ismtx_default_cfg ( &ismtx ) < 0 )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, select correct signal modulation... " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define ISMTX_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition ismtx.h:282
#define ISM_TX_MODULATION_FSK
Definition ismtx.h:113
void ismtx_soft_reset(ismtx_t *ctx)
ISM TX software reset.
void application_init(void)
Definition main.c:38

Application Task

‍Transmits data via external antenna in span of 100ms.

void application_task ( void )
{
log_info( &logger, " Data sent: %s", tx_data_buf );
Delay_ms ( 100 );
}
void application_task(void)
Definition main.c:80
#define PREAMBLE_BYTE
Definition main.c:31
uint8_t tx_data_buf[9]
Definition main.c:33

Note

‍Default configuration configures device and set's transmission frequency to 433.92 MHz. If selected modulation is FSK frequency deviation is set to 40kHz.

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

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.