Enjoy high-quality audio and data transfer without limitations
A
A
Hardware Overview
How does it work?
BLE 12 Click is based on the BM832A, a highly flexible, ultra-low power Bluetooth module that provides BLE connectivity for any embedded application from Fanstel. The BM832A module is based on the Nordic nRF52 SoC, which integrates a 64MHz, 32bit ARM Cortex M4 processor with a floating-point unit (FPU) and a 2.4GHz multiprotocol radio (supporting Bluetooth 5.0 and an integrated PCB trace antenna), featuring -96dBm RX sensitivity (depending on data rate), alongside 192kB Flash memory and 24kB RAM. BLE 12 Click allows UART and SPI interfaces, with commonly used UART RX and TX pins as its default communication protocol for exchanging AT commands operating at 115200 bps by default configuration, to transmit and exchange data with the host MCU. The selection can be made by positioning SMD jumpers labeled COMM SEL in an appropriate position. Note that all the jumpers' positions must be on the same side, or the Click
board™ may become unresponsive. The CMD pin routed on the PWM pin of the mikroBUS™ represents the communication-activation feature. A high logic state of the CMD pin allows the module to communicate with the MCU, while a low state allows data to be sent to a far-end device (for example, a smartphone) transparently. With the selected UART interface, power consumption can be reduced by sending the command "AT+STOP". The CS pin must be set to a low logic state for 200μs or more to wake up the UART interface. Besides, it has an additional data-ready signal, labeled as REQ and routed on the INT pin of the mikroBUS™ socket, indicating that new data is ready for the host. This Click board™ comes with worldwide regulatory certifications and offers enhanced performance, security, and reliability to support IoT products running on Bluetooth networks. Besides, at the center of the BLE 12 Click, an additional unpopulated header offers full
support for debugging and programming capabilities. With this header, the user can use a Serial Wire Debug interface for programming and debugging, available through the SWD interface pins (SWDIO, SWCLK, and SWO). In addition to the appropriate interfaces, this Click board™ also has some additional features. A Reset button routed to the RST pin on the mikroBUS™ socket puts the module into a Reset state, while the two additional LED indicators, yellow and red LEDs labeled as LED1 and LED2, can be used for optional user-configurable visual indication. This Click board™ can be operated only with a 3.3V logic voltage level. The board must perform appropriate logic voltage level conversion before using MCUs with different logic levels. Also, it comes equipped with a library containing functions and an example code that can be used, as a reference, for further development.
Features overview
Development board
EasyPIC v8 is a development board specially designed for the needs of rapid development of embedded applications. It supports many high pin count 8-bit PIC microcontrollers from Microchip, regardless of their number of pins, and a broad set of unique functions, such as the first-ever embedded debugger/programmer. The development board is well organized and designed so that the end-user has all the necessary elements, such as switches, buttons, indicators, connectors, and others, in one place. Thanks to innovative manufacturing technology, EasyPIC v8 provides a fluid and immersive working experience, allowing access anywhere and under any
circumstances at any time. Each part of the EasyPIC v8 development board contains the components necessary for the most efficient operation of the same board. In addition to the advanced integrated CODEGRIP programmer/debugger module, which offers many valuable programming/debugging options and seamless integration with the Mikroe software environment, the board also includes a clean and regulated power supply module for the development board. It can use a wide range of external power sources, including a battery, an external 12V power supply, and a power source via the USB Type-C (USB-C) connector.
Communication options such as USB-UART, USB DEVICE, and CAN are also included, including the well-established mikroBUS™ standard, two display options (graphical and character-based LCD), and several different DIP sockets. These sockets cover a wide range of 8-bit PIC MCUs, from the smallest PIC MCU devices with only eight up to forty pins. EasyPIC v8 is an integral part of the Mikroe ecosystem for rapid development. Natively supported by Mikroe software tools, it covers many aspects of prototyping and development thanks to a considerable number of different Click boards™ (over a thousand boards), the number of which is growing every day.
Microcontroller Overview
MCU Card / MCU
Architecture
PIC
MCU Memory (KB)
128
Silicon Vendor
Microchip
Pin count
28
RAM (Bytes)
8192
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Schematic
Step by step
Project assembly
Track your results in real time
Application Output via UART Mode
1. Once the code example is loaded, pressing the "FLASH" button initiates the build process, and programs it on the created setup.
2. After the programming is completed, click on the Tools icon in the upper-right panel, and select the UART Terminal.
3. After opening the UART Terminal tab, first check the baud rate setting in the Options menu (default is 115200). If this parameter is correct, activate the terminal by clicking the "CONNECT" button.
4. Now terminal status changes from Disconnected to Connected in green, and the data is displayed in the Received data field.
Software Support
Library Description
This library contains API for BLE 12 Click driver.
Key functions:
ble12_set_device_name
- BLE 12 set device name functionble12_set_op_mode
- BLE 12 set operating mode functionble12_send_cmd
- BLE 12 sends the command function
Open Source
Code example
This example can be found in NECTO Studio. Feel free to download the code, or you can copy the code below.
/*!
* @file main.c
* @brief BLE 12 Click Example.
*
* # Description
* This example reads and processes data from BLE 12 Click board™.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initializes UART driver and logs UART.
* After driver initialization, the app performs a wake-up module,
* enters command mode, sets the device name and advertising time interval,
* and disconnects all connections.
* After that, the blinking of the yellow LED Indicates
* that the BLE 12 Click board™ is ready for connection.
* After establishing the connection, the yellow LED is turned on.
*
* ## Application Task
* This example demonstrates the use of the BLE 12 Click board™.
* Reads the received data and parses it.
* Results are being sent to the Usart Terminal, where you can track their changes.
*
* ## Additional Function
* - static void ble12_clear_app_buf ( void )
* - static err_t ble12_process ( void )
*
* @note
* We have used the Serial Bluetooth Terminal Android application for the test
* and you can find it at the link:
* https://play.google.com/store/apps/details?id=de.kai_morich.serial_bluetooth_terminal
*
* @author Nenad Filipovic
*
*/
#include "board.h"
#include "log.h"
#include "ble12.h"
#define PROCESS_BUFFER_SIZE 200
#define RSP_TIMEOUT 100
static ble12_t ble12;
static log_t logger;
static char app_buf[ PROCESS_BUFFER_SIZE ] = { 0 };
static int32_t app_buf_len = 0;
static int32_t app_buf_cnt = 0;
/**
* @brief BLE 12 clearing application buffer.
* @details This function clears memory of application buffer and reset it's length and counter.
* @note None.
*/
static void ble12_clear_app_buf ( void );
/**
* @brief BLE 12 data reading function.
* @details This function reads data from device and concatenates data to application buffer.
*
* @return @li @c 0 - Read some data.
* @li @c -1 - Nothing is read.
* @li @c -2 - Application buffer overflow.
*
* See #err_t definition for detailed explanation.
* @note None.
*/
static err_t ble12_process ( void );
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
ble12_cfg_t ble12_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.
ble12_cfg_setup( &ble12_cfg );
BLE12_MAP_MIKROBUS( ble12_cfg, MIKROBUS_1 );
if ( UART_ERROR == ble12_init( &ble12, &ble12_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
if ( BLE12_ERROR == ble12_default_cfg ( &ble12 ) )
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
app_buf_len = 0;
app_buf_cnt = 0;
Delay_ms( 100 );
log_info( &logger, " Application Task " );
log_printf( &logger, "-------------------------------\r\n" );
log_printf( &logger, "\t BLE 12 Click\r\n" );
log_printf( &logger, "-------------------------------\r\n" );
log_printf( &logger, "\t Command mode\r\n" );
ble12_set_op_mode( &ble12, BLE12_OP_MODE_CMD );
Delay_ms( 100 );
ble12_event_startup( &ble12 );
Delay_ms( 100 );
ble12_set_led_state( &ble12, BLE12_LED_RED, BLE12_LED_OFF );
ble12_set_led_state( &ble12, BLE12_LED_YELLOW, BLE12_LED_OFF );
Delay_ms( 100 );
log_printf( &logger, "- - - - - - - - - - - - - - - -\r\n" );
log_printf( &logger, "> Set device name:" );
log_printf( &logger, " BLE 12 Click\r\n" );
ble12_set_device_name( &ble12, "BLE 12 Click" );
Delay_ms( 100 );
log_printf( &logger, "> Set Adv. Interval: 99 ms\r\n" );
ble12_set_adv_interval( &ble12, "0099" );
Delay_ms( 100 );
log_printf( &logger, "> Disconnect all connections\r\n" );
ble12_disconnect( &ble12 );
Delay_ms( 100 );
log_printf( &logger, "-------------------------------\r\n" );
log_printf( &logger, " Please connect your device\r\n" );
do
{
ble12_process();
ble12_set_led_state( &ble12, BLE12_LED_YELLOW, BLE12_LED_ON );
Delay_ms( 50 );
ble12_set_led_state( &ble12, BLE12_LED_YELLOW, BLE12_LED_OFF );
Delay_ms( 50 );
}
while ( !strstr( app_buf, BLE12_EVT_CONNECTED ) );
Delay_ms( 100 );
ble12_set_led_state( &ble12, BLE12_LED_RED, BLE12_LED_OFF );
ble12_set_led_state( &ble12, BLE12_LED_YELLOW, BLE12_LED_ON );
log_printf( &logger, "- - - - - - - - - - - - - - - -\r\n" );
log_printf( &logger, "\tDevice connected\r\n" );
Delay_ms( 100 );
ble12_set_op_mode( &ble12, BLE12_OP_MODE_DATA );
log_printf( &logger, "-------------------------------\r\n" );
log_printf( &logger, "\t Data mode\r\n" );
log_printf( &logger, "- - - - - - - - - - - - - - - -\r\n" );
Delay_ms( 100 );
ble12_process();
ble12_clear_app_buf( );
Delay_ms( 100 );
}
void application_task ( void )
{
ble12_process();
if ( app_buf_len > 0 )
{
log_printf( &logger, "%s", app_buf );
ble12_clear_app_buf( );
}
}
void main ( void )
{
application_init( );
for ( ; ; )
{
application_task( );
}
}
static void ble12_clear_app_buf ( void )
{
memset( app_buf, 0, app_buf_len );
app_buf_len = 0;
app_buf_cnt = 0;
}
static err_t ble12_process ( void )
{
int32_t rx_size;
char rx_buff[ PROCESS_BUFFER_SIZE ] = { 0 };
rx_size = ble12_generic_read( &ble12, rx_buff, PROCESS_BUFFER_SIZE );
if ( rx_size > 0 )
{
int32_t buf_cnt = 0;
if ( app_buf_len + rx_size >= PROCESS_BUFFER_SIZE )
{
ble12_clear_app_buf( );
return BLE12_ERROR;
}
else
{
buf_cnt = app_buf_len;
app_buf_len += rx_size;
}
for ( int32_t rx_cnt = 0; rx_cnt < rx_size; rx_cnt++ )
{
if ( ( rx_buff[ rx_cnt ] != 0 ) && ( rx_buff[ rx_cnt ] != 0x2B ) )
{
app_buf[ ( buf_cnt + rx_cnt ) ] = rx_buff[ rx_cnt ];
}
else
{
app_buf_len--;
buf_cnt--;
}
}
return BLE12_OK;
}
return BLE12_ERROR;
}
// ------------------------------------------------------------------------ END