Community Translation - Low Power Implementation and Current Measurement Method for CYBT-343026- EVAL – KBA223800

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
KoKi_1693136
Level 5
Level 5
Distributor - Marubun (Japan)
5 solutions authored 25 replies posted First solution authored

Hi,

I tried to translate following one into Japanese.

Low Power Implementation and Current Measurement Method for CYBT-343026- EVAL - KBA223800

https://community.cypress.com/docs/DOC-15243

=========================

タイトル:CYBT-343026-EVALのLow Powerモードの実装および消費電流測定方法について

質問

CYBT-343026-EVALのLow Powerモードを有効にするにはどのようにしたらいいでしょうか。

また、電流をどのように測定したらよいでしょうか。

回答

CYBT-423028-EVAL キットは認証済みの完全に統合された Bluetooth Smart Ready 対応のワイヤレスモジュール (CYBT-343026-01) が含まれています。

本KBAでは、hello_sensorを修正したサンプルアプリケーション(hello_sensor_lowpower)を使用して、Low Powerモードを有効にする方法を説明します。

サンプルアプリケーションでLow Powerモードを有効にするためには以下の手順に従ってください。

1.WICED® Studio SDKのアプリケーションプロジェクトにヘッダーファイル(wiced_power_save.h)をインクルードしてください。

     #include “wiced_power_save.h”

2.CYBT-343026-01モジュールをLow Powerモードに入れるために全ての機会においてスタックに呼ばれるコールバック関数を宣言してください。

     static uint32_t    LPB_power_save_approve_callback(void);

3.アプリケーションプロジェクトの初期化のコールバック関数を登録してください。

     wiced_power_save_register_approve_cback(LPB_power_save_approve_callback);

4.Low Powerモードを有効にするため、初期化の最後に下記の関数をコールしてください。

     wiced_sleep_config( WICED_TRUE, NULL, NULL );

5.デバイスがLow Powerモードに移行できるために全ての機会において“1”を返せるようにコールバック関数を実装してください。

     uint32_t LPB_power_save_approve_callback()

     {

          return 1;      /* Return 1 to approve going into low power mode */

     }

CYBT-343026-01 moduleの消費電力を最適化するためのオプションは下記になります。

・アプリケーションの要求に合わせて、アプリケーションプロジェクト内のすべてのタイマーを無効にするか、タイムアウトを大きくします。

・最終製品でUARTを必要としていなければ、UARTの初期化をコメントアウトもしくは削除します。

     // wiced_transport_init( &transport_cfg );

・リーク電流を避けるため未使用のGPIOはHi-Zモードになっていることを確認します。

・電流測定中はCYBT-343026-EVALのSW4 (HCI_UART) とSW5 (PUART)の全てのスイッチをオフにします。ファームウェアダウンロード時は、SW4 (HCI_UART)の全てのスイッチはオンにします。

0 Likes
2 Replies
JennaJo
Moderator
Moderator
Moderator
1000 replies posted 750 replies posted 500 replies posted

Hello

We receive your translation, it will be published to KBA to Community.

I will get back to you after internal review, after that you will receive the point.

Thanks for your contribution to CDC!

Will keep you update the status.

Thanks,

Jenna Jo

Jenna Jo
JennaJo
Moderator
Moderator
Moderator
1000 replies posted 750 replies posted 500 replies posted

Hello,

thanks for your contribution to Community translation activity.

your translation has been published to Web site, and you will be received the score as a token of appreciation.

CYBT-343026-EVALの低消費電力モードの実装および消費電流測定方法について - Community Translated (JA)

Thanks for improving community translation page!

Regards,

Jenna Jo

Jenna Jo