RN4678 click
RN4678 click carries the RN4678 Bluetooth® 4.2 dual mode module from Microchip. The click is designed to run on a 3.3V power supply. It communicates with the target microcontroller over I2C and UART interface, with additional functionality provided by the following pins on the mikroBUS™ line: AN, RST, CS, PWM, INT.
click Product page
Click library
- Author : MikroE Team
- Date : jun 2020.
- Type : UART type
Software Support
We provide a library for the Rn4678 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 form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.
Library Description
This library contains API for Rn4678 Click driver.
Standard key functions :
- Config Object Initialization function.
void rn4678_cfg_setup ( rn4678_cfg_t *cfg );
- Initialization function.
RN4678_RETVAL rn4678_init ( rn4678_t *ctx, rn4678_cfg_t *cfg );
- Enable device function
void rn4678_enable ( rn4678_t *ctx );
Example key functions :
- Enter the command mode function
void rn4678_enter_command_mode ( rn4678_t *ctx );
- Exit the command mode function
void rn4678_exit_command_mode ( rn4678_t *ctx );
- Set the device name function
void rn4678_set_device_name ( rn4678_t *ctx, uint8_t *name );
Examples Description
This example reads and processes data from RN4678 clicks.
The demo application is composed of two sections :
Application Init
Initializes the driver and configures the click board.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "Configuring the module...\n" );
do
{
log_printf( &logger, " --- Command mode --- \r\n" );
}
while( rn4678_process( "CMD" ) != 1 );
do
{
log_printf( &logger, " --- Device name --- \r\n" );
}
while( rn4678_process( "AOK" ) != 1 );
do
{
log_printf( &logger, " --- Status string --- \r\n" );
}
while( rn4678_process( "AOK" ) != 1 );
do
{
log_printf( &logger, " --- Operating mode --- \r\n" );
}
while( rn4678_process( "AOK" ) != 1 );
do
{
log_printf( &logger, " --- Authentication --- \r\n" );
}
while( rn4678_process( "AOK" ) != 1 );
do
{
log_printf( &logger, " --- Pin code --- \r\n" );
}
while( rn4678_process( "AOK" ) != 1 );
do
{
log_printf( &logger, " --- Exit command mode --- \r\n" );
}
while( rn4678_process( "END" ) != 1 );
log_printf( &logger, "The module has been configured.\n" );
}
#define RN4678_MAP_MIKROBUS(cfg, mikrobus)
Definition rn4678.h:67
void rn4678_exit_command_mode(rn4678_t *ctx)
Exit the command mode function.
void rn4678_hw_reset(rn4678_t *ctx)
Hardwere reset function.
void rn4678_enter_command_mode(rn4678_t *ctx)
Enter the command mode function.
RN4678_RETVAL rn4678_set_security_pin_code(rn4678_t *ctx, uint8_t *sp_code)
Set security pin code function.
void rn4678_set_device_name(rn4678_t *ctx, uint8_t *name)
Set the device name function.
void rn4678_set_cts_pin(rn4678_t *ctx, uint8_t state)
CTS Pin Setting function.
void rn4678_set_authentication(rn4678_t *ctx, uint8_t auth_value)
Set the authentication function.
void rn4678_set_extended_status_string(rn4678_t *ctx, uint8_t *es_string)
Set extended status string function.
void rn4678_enable(rn4678_t *ctx)
Enable device function.
void rn4678_cfg_setup(rn4678_cfg_t *cfg)
Config Object Initialization function.
RN4678_RETVAL rn4678_init(rn4678_t *ctx, rn4678_cfg_t *cfg)
Initialization function.
void rn4678_set_operating_mode(rn4678_t *ctx, uint8_t op_mode)
Set the operating mode function.
void application_init(void)
Definition main.c:140
uint8_t EXTENDED_STRING_DATA[10]
Definition main.c:50
uint8_t DEVICE_NAME_DATA[20]
Definition main.c:49
uint8_t PIN_CODE_DATA[10]
Definition main.c:51
Click configuration structure definition.
Definition rn4678.h:138
Application Task
Checks for the received data, reads it and replies with a certain message.
{
}
#define PROCESS_LOG_RSP
Definition main.c:42
void application_task(void)
Definition main.c:225
Note
We have used the Serial Bluetooth Terminal smartphone application for the test. A smartphone and the click board must be paired in order to exchange messages with each other.
The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.Rn4678
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.