这DA14585和DA14586.建议用于新设计。
比赛
DA14583 Development Kit Pro非常适用于希望对其软件开发完全控制的软件开发人员,并希望关注其应用的功耗。Pro套件包括一个入门套件和子板套件。
入门套件包含DA14580主板,可以与DA14583 QFN40子板相结合,并为您提供所有包装的GPIO。这kit’s on-board SEGGER chip gives you complete debugging capability while dedicated on-board circuitry allows you, in combination with our complete software environment SmartSnippets™, to profile and fine tune the power consumption of your application to get the most out of DA14583’s advantages.
SmartBond™:没有妥协的功率,尺寸和系统成本
入门套件
蓝牙低能量DA14580主板
蓝牙低能量USB加密狗
CR2032电池
USB电缆
快速启动指南
子板工具包
符合入门套件的DA14583子板套件如下:
- 1x QFN40子板
DA14583.
4年前
app_easy_timer.
张贴了ankit.0分 3回复你好,
我的应用程序基于计时器。所以,我想要一个普通计时器。在正常模式中,我使用Timer0,一切正常正常工作。但在启用扩展睡眠模式后,我发现Timer0无法正常工作。因此,在少量文档和支持之后,我知道Timer0不能在睡眠模式下使用,因为它被BLE使用。所以,现在我正在使用app_easy_timer();在我的申请中。它在扩展睡眠模式下工作正常,但上电(当设备不在睡眠模式时),app_easy_timer()不起作用。当设备进入睡眠模式时,它只有效。
1.是否有任何方法可以在正常模式下使用app_easy_timer()(仅限上电)。
2.是否有任何功能或入口点指示我可以使用app_easy_timer()开始。所以,我可以在那里进行电源功能。
4年前
嗨ankit,
关于您的第一个问题我在正常模式和扩展睡眠模式事件中使用App_easy_timer()函数,它运行正常。For the second question, it’s sure that you can use the app_easy_timer() in every functionality you want to implement, except if you set up the timer before the .app_on_init() callback function(after the completion of this function you can use the timer) then a GAPM_RESET is issued after that function and all the messages in the kernel queue are flushed including timers and in general after a GAPM_RESET all the timers that are issued before that command are flushed. So you will have to check if the timer is indeed set and that a GAPM_RESET is not invoked before the timer has elapsed.
谢谢,
sts_dialog。