集成高效的实时时钟到您的解决方案中,实现精确的事件计时和无缝的同步。
A
A
硬件概览
它是如何工作的?
RTC 21 Click 基于 Diodes Incorporated 的 PT7C4311,这是一款超低功耗的实时时钟 (RTC) 设备。PT7C4311 配置为基于 32.768kHz 石英晶体向 MCU 传输日历和时间数据(24 小时格式),并带有 56 字节的通用 RAM。它以秒为单位从 MCU 读取和写入时钟/日历数据,直到日历年的最后两位数字,提供秒、分、小时、日期、星期几、月份、年份
和世纪信息。月底日期会自动调整为少于 31 天的月份,包括对 2100 年之前的闰年的修正。此 Click board™ 使用标准 I2C 2 线接口与 MCU 通信,以读取数据和配置设置,支持最高 400kHz 的快速模式操作。它还包含一个标记为 FT 的开漏输出,可用作频率测试信号(用于频率测试目的的 512Hz 方波)或在方波禁用时作为寄存器可配置的输出直流电平。
PT7C4311 还包括一个自动备用切换电路,允许其与单个纽扣电池一起使用,从而延长使用时间。此 Click board™ 可以在 3.3V 或 5V 逻辑电压水平下运行,通过 VCC SEL 跳线选择。这样,3.3V 和 5V 的 MCU 都可以正确使用通信线路。此外,该 Click board™ 配备了包含易于使用的函数和示例代码的库,可作为进一步开发的参考。
功能概述
开发板
Nucleo 32开发板搭载STM32F031K6 MCU,提供了一种经济且灵活的平台,适用于使用32引脚封装的STM32微控制器进行实验。该开发板具有Arduino™ Nano连接性,便于通过专用扩展板进行功能扩展,并且支持mbed,使其能够无缝集成在线资源。板载集成
ST-LINK/V2-1调试器/编程器,支持通过USB重新枚举,提供三种接口:虚拟串口(Virtual Com port)、大容量存储和调试端口。该开发板的电源供应灵活,可通过USB VBUS或外部电源供电。此外,还配备了三个LED指示灯(LD1用于USB通信,LD2用于电源
指示,LD3为用户可控LED)和一个复位按钮。STM32 Nucleo-32开发板支持多种集成开发环境(IDEs),如IAR™、Keil®和基于GCC的IDE(如AC6 SW4STM32),使其成为开发人员的多功能工具。
微控制器概述
MCU卡片 / MCU
建筑
ARM Cortex-M0
MCU 内存 (KB)
32
硅供应商
STMicroelectronics
引脚数
32
RAM (字节)
4096
你完善了我!
配件
Click Shield for Nucleo-32是扩展您的开发板功能的理想选择,专为STM32 Nucleo-32引脚布局设计。Click Shield for Nucleo-32提供了两个mikroBUS™插座,可以添加来自我们不断增长的Click板™系列中的任何功能。从传感器和WiFi收发器到电机控制和音频放大器,我们应有尽有。Click Shield for Nucleo-32与STM32 Nucleo-32开发板兼容,为用户提供了一种经济且灵活的方式,使用任何STM32微控制器快速创建原型,并尝试各种性能、功耗和功能的组合。STM32 Nucleo-32开发板无需任何独立的探针,因为它集成了ST-LINK/V2-1调试器/编程器,并随附STM32全面的软件HAL库和各种打包的软件示例。这个开发平台为用户提供了一种简便且通用的方式,将STM32 Nucleo-32兼容开发板与他们喜欢的Click板™结合,应用于即将开展的项目中。
使用的MCU引脚
mikroBUS™映射器
“仔细看看!”
Click board™ 原理图
一步一步来
项目组装
实时跟踪您的结果
应用程序输出
此款Click板可通过两种方式进行接口连接和监控:
Application Output
- 在调试模式下,使用“Application Output”窗口进行实时数据监控。按照本教程正确设置它。
UART Terminal
- 通过UART终端使用USB to UART converter监控数据有关详细说明,请查看本教程。
软件支持
库描述
该库包含 RTC 21 Click 驱动程序的 API。
关键功能:
rtc21_set_time
- 此功能设置起始时间值 - 秒、分和小时rtc21_set_date
- 此功能设置起始日期值 - 星期几、日、月和年rtc21_read_time
- 此功能读取当前时间值 - 秒、分和小时
开源
代码示例
完整的应用程序代码和一个现成的项目可以通过NECTO Studio包管理器直接安装到NECTO Studio。 应用程序代码也可以在MIKROE的GitHub账户中找到。
/*!
* @file main.c
* @brief RTC 21 Click example
*
* # Description
* This example demonstrates the use of RTC 21 click board by reading and displaying
* the time and date values.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initializes the driver and logger and then sets the starting time and date.
*
* ## Application Task
* Reads and displays on the USB UART the current time and date values once per second.
*
* @author Stefan Filipovic
*
*/
#include "board.h"
#include "log.h"
#include "rtc21.h"
static rtc21_t rtc21;
static log_t logger;
static rtc21_time_t time;
static rtc21_date_t date;
/**
* @brief RTC 21 get day of week name function.
* @details This function returns the name of day of the week as a string.
* @param[in] ctx : Click context object.
* See #rtc21_t object definition for detailed explanation.
* @param[in] day_of_week : Day of week decimal value.
* @return Name of day as a string.
* @note None.
*/
static uint8_t *rtc21_get_day_of_week_name ( uint8_t day_of_week );
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
rtc21_cfg_t rtc21_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.
rtc21_cfg_setup( &rtc21_cfg );
RTC21_MAP_MIKROBUS( rtc21_cfg, MIKROBUS_1 );
if ( I2C_MASTER_ERROR == rtc21_init( &rtc21, &rtc21_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
time.hour = 23;
time.minute = 59;
time.second = 50;
if ( RTC21_OK == rtc21_set_time ( &rtc21, &time ) )
{
log_printf( &logger, " Set time: %.2u:%.2u:%.2u\r\n",
( uint16_t ) time.hour, ( uint16_t ) time.minute, ( uint16_t ) time.second );
}
date.day_of_week = RTC21_SATURDAY;
date.day = 31;
date.month = 12;
date.year = 22;
if ( RTC21_OK == rtc21_set_date ( &rtc21, &date ) )
{
log_printf( &logger, " Set date: %s, %.2u.%.2u.20%.2u.\r\n",
rtc21_get_day_of_week_name ( date.day_of_week ),
( uint16_t ) date.day, ( uint16_t ) date.month, ( uint16_t ) date.year );
}
Delay_ms ( 100 );
log_info( &logger, " Application Task " );
}
void application_task ( void )
{
if ( RTC21_OK == rtc21_read_time ( &rtc21, &time ) )
{
log_printf( &logger, " Time: %.2u:%.2u:%.2u\r\n",
( uint16_t ) time.hour, ( uint16_t ) time.minute, ( uint16_t ) time.second );
}
if ( RTC21_OK == rtc21_read_date ( &rtc21, &date ) )
{
log_printf( &logger, " Date: %s, %.2u.%.2u.20%.2u.\r\n",
rtc21_get_day_of_week_name ( date.day_of_week ),
( uint16_t ) date.day, ( uint16_t ) date.month, ( uint16_t ) date.year );
}
Delay_ms ( 1000 );
}
void main ( void )
{
application_init( );
for ( ; ; )
{
application_task( );
}
}
static uint8_t *rtc21_get_day_of_week_name ( uint8_t day_of_week )
{
switch ( day_of_week )
{
case RTC21_MONDAY:
{
return "Monday";
}
case RTC21_TUESDAY:
{
return "Tuesday";
}
case RTC21_WEDNESDAY:
{
return "Wednesday";
}
case RTC21_THURSDAY:
{
return "Thursday";
}
case RTC21_FRIDAY:
{
return "Friday";
}
case RTC21_SATURDAY:
{
return "Saturday";
}
case RTC21_SUNDAY:
{
return "Sunday";
}
default:
{
return "Unknown";
}
}
}
// ------------------------------------------------------------------------ END