brushless9 2.0.0.0
Main Page

Brushless 9 click

‍Brushless 9 Click is a compact add-on board suitable for controlling BLDC motors with any MCU. This board features the TC78B027FTG, a 1-Hall sine-wave PWM controller for three-phase brushless DC motors from Toshiba Semiconductor. It simplifies the motor selection by using only one Hall sensor input that can be used with either a single Hall sensor motor or the more conventional 3 Hall sensor motors.

click Product page


Click library

  • Author : Luka Filipovic
  • Date : Dec 2020.
  • Type : PWM type

Software Support

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

Standard key functions :

Example key functions :

Example Description

‍This application is a showcase of controlling speed and direction of brushless motor with hall sensor.

The demo application is composed of two sections :

Application Init

‍Initialization of LOG, PWM module and additional pins for controlling motor.

void application_init ( void )
{
log_cfg_t log_cfg;
brushless9_cfg_t brushless9_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
brushless9_cfg_setup( &brushless9_cfg );
BRUSHLESS9_MAP_MIKROBUS( brushless9_cfg, MIKROBUS_1 );
err_t init_flag = brushless9_init( &brushless9, &brushless9_cfg );
if ( init_flag == PWM_ERROR )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
brushless9_set_dir( &brushless9, direction );
brushless9_set_brk( &brushless9, 1 );
brushless9_set_duty_cycle ( &brushless9, 0 );
brushless9_pwm_start( &brushless9 );
log_info( &logger, " Application Task " );
}
#define BRUSHLESS9_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition brushless9.h:91
err_t brushless9_pwm_start(brushless9_t *ctx)
Brushless 9 start PWM module.
void application_init(void)
Definition main.c:32

Application Task

‍In span of 2 seconds changes duty cycle from 0 to 100% and then back to 0, at the end changes direction of motor.

void application_task ( void )
{
log_info( &logger, " Starting... " );
brushless9_set_brk( &brushless9, 0 );
for ( uint8_t duty_cnt = 1; duty_cnt < 10; duty_cnt++ )
{
Delay_ms ( DUTY_CHANGE_DELAY );
brushless9_set_duty_cycle ( &brushless9, ( float ) duty_cnt / 10.0 );
log_printf( &logger, "Duty cycle: %u%%\r\n", ( uint16_t ) ( duty_cnt * 10 ) );
}
for ( uint8_t duty_cnt = 10; duty_cnt > 0; duty_cnt-- )
{
Delay_ms ( DUTY_CHANGE_DELAY );
brushless9_set_duty_cycle ( &brushless9, ( float ) duty_cnt / 10.0 );
log_printf( &logger, "Duty cycle: %u%%\r\n", ( uint16_t ) ( duty_cnt * 10 ) );
}
Delay_ms ( DUTY_CHANGE_DELAY );
log_info( &logger, " Stopping... " );
brushless9_set_duty_cycle ( &brushless9, 0 );
brushless9_set_brk( &brushless9, 1 );
Delay_ms ( BREAK_DELAY );
log_info( &logger, " Changing direction... " );
direction = !direction;
brushless9_set_dir( &brushless9, direction );
}
#define BREAK_DELAY
Definition main.c:25
void application_task(void)
Definition main.c:70
#define DUTY_CHANGE_DELAY
Definition main.c:24

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

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.