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]
Rating:
Author: MIKROE
Last Updated: 2024-10-31
Package Version: 2.1.0.12
mikroSDK Library: 2.0.0.0
Category: 2.4 GHz Transceivers
Downloaded: 153 times
Not followed.
License: MIT license
ISM Click is a compact add-on board that contains a complete wireless RF digital data transceiver. This board features the RFM75, a low-power, high-performance 2.4GHz GFSK transceiver from RF Solutions. The RFM75 transceiver is configurable through SPI serial interface and operates with only 3.3V in the worldwide ISM frequency band from 2400MHz up to 2527MHz. The embedded packet processing engines enable their entire operation with a simple MCU as a radio system. Burst mode transmission and up to 2Mbps air data rate make it suitable for applications requiring ultra-low power consumption.
Do you want to subscribe in order to receive notifications regarding "ISM Click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "ISM Click" changes.
Do you want to report abuse regarding "ISM Click".
DOWNLOAD LINK | RELATED COMPILER | CONTAINS |
---|---|---|
4417_ism_click.zip [430.25KB] | mikroC AI for ARM GCC for ARM Clang for ARM mikroC AI for PIC mikroC AI for PIC32 XC32 GCC for RISC-V Clang for RISC-V mikroC AI for AVR mikroC AI for dsPIC XC16 |
|
ISM Click is a compact add-on board that contains a complete wireless RF digital data transceiver. This board features the RFM75, a low-power, high-performance 2.4GHz GFSK transceiver from RF Solutions. The RFM75 transceiver is configurable through SPI serial interface and operates with only 3.3V in the worldwide ISM frequency band from 2400MHz up to 2527MHz. The embedded packet processing engines enable their entire operation with a simple MCU as a radio system. Burst mode transmission and up to 2Mbps air data rate make it suitable for applications requiring ultra-low power consumption.
We provide a library for the Ism 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.
This library contains API for Ism Click driver.
ism_cfg_setup
Config Object Initialization function.
void ism_cfg_setup ( ism_cfg_t *cfg );
ism_init
Initialization function.
err_t ism_init ( ism_t *ctx, ism_cfg_t *cfg );
ism_default_cfg
Click Default Configuration function.
void ism_default_cfg ( ism_t *ctx );
ism_device_config
ISM device configuration function.
err_t ism_device_config ( ism_t *ctx );
ism_receive_packet
ISM receive packet function.
err_t ism_receive_packet ( ism_t *ctx, uint8_t *rx_data );
ism_transmit_packet
ISM transmit package function.
err_t ism_transmit_packet ( ism_t *ctx, uint8_t type, uint8_t *tx_data, uint8_t len );
This library contains API for the ISM Click driver. This example transmits/receives and processes data from ISM clicks.
The demo application is composed of two sections :
Initializes driver and performs the default configuration.
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
ism_cfg_t ism_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.
ism_cfg_setup( &ism_cfg );
ISM_MAP_MIKROBUS( ism_cfg, MIKROBUS_1 );
if ( SPI_MASTER_ERROR == ism_init( &ism, &ism_cfg ) )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
ism_default_cfg ( &ism );
Delay_ms ( 100 );
#ifdef DEMO_APP_TRANSMITTER
ism_switch_tx_mode( &ism );
log_printf( &logger, " Application Mode: Transmitter\r\n" );
#else
ism_switch_rx_mode( &ism );
log_printf( &logger, " Application Mode: Receiver\r\n" );
#endif
log_info( &logger, " Application Task " );
}
Transmitter/Receiver task depends on uncommented code. Receiver logging each received byte to the UART for data logging, while transmitter send messages every 1 second.
void application_task ( void )
{
#ifdef DEMO_APP_TRANSMITTER
ism_transmit_packet( &ism, ISM_CMD_W_TX_PAYLOAD_NOACK, demo_message_1, 9 );
log_printf( &logger, " Tx : %s", demo_message_1 );
Delay_ms ( 1000 );
ism_transmit_packet( &ism, ISM_CMD_W_TX_PAYLOAD_NOACK, demo_message_2, 12 );
log_printf( &logger, " Tx : %s", demo_message_2 );
Delay_ms ( 1000 );
#else
uint8_t rx_buf[ ISM_MAX_PACKET_LEN ] = { 0 };
ism_receive_packet( &ism, &rx_buf[ 0 ] );
if ( rx_buf[ 0 ] )
{
log_printf( &logger, " Rx : %s", rx_buf );
}
#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:
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.