From 8d3c64e7f243a5f788b4397e8f5674a9497804db Mon Sep 17 00:00:00 2001 From: sato_masaki Date: Mon, 4 Aug 2008 11:58:50 +0000 Subject: [PATCH] =?UTF-8?q?r2082=20=E3=81=AE=E5=A4=89=E6=9B=B4=E3=82=92?= =?UTF-8?q?=E6=88=BB=E3=81=99(RC=20plus=E3=83=96=E3=83=A9=E3=83=B3?= =?UTF-8?q?=E3=83=81=E7=94=A8)=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2091 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- build/components/hyena.TWL/src/main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/components/hyena.TWL/src/main.c b/build/components/hyena.TWL/src/main.c index d09cdf4b..7aa98f95 100644 --- a/build/components/hyena.TWL/src/main.c +++ b/build/components/hyena.TWL/src/main.c @@ -310,12 +310,18 @@ TwlSpMain(void) そのため、新無線のファームDL完了通知をmain loopでチェックし、 完了が通知されたら旧無線初期化を行った後、NWMに確認通知を送る。[twl-dev:0980] */ WVR_Begin(wramHeapHandle); +#if 1 + // [TODO:] RC plus branchでは、NWMSPi_NotifyConfirmation()の返り値がないため、返り値評価を行わない。 + // 次期リリースで返り値評価を行うよう変更予定。 + NWMSPi_NotifyConfirmation(); +#else if (FALSE == NWMSPi_NotifyConfirmation()) { // NWMへのConfirmation通知のためのSendMessageにENQできない状態. // (ここに来ることはありえない筈.) OS_Panic("ARM7: Failed to complete wireless firmare install.\n"); } +#endif } BOOT_WaitStart(); }