diff --git a/man/WDS_Wrapper/html/_w_d_s_wrapper_8c.html b/man/WDS_Wrapper/html/_w_d_s_wrapper_8c.html deleted file mode 100644 index 3c49778e..00000000 --- a/man/WDS_Wrapper/html/_w_d_s_wrapper_8c.html +++ /dev/null @@ -1,282 +0,0 @@ - - -WDSWrapper: src/WDSWrapper.c - - - - - -
-

src/WDSWrapper.c

WDSライブラリのラッパー [詳細] -

-#include "WDSWrapper.h"
- - - - - - - - - - - - - - - - - - - - - - - -

データ構造

struct  WDSWrapperWork
 WDSラッパーのワーク領域 [詳細]

関数

WDSWrapperErrCode WDS_WrapperInitialize (WDSWrapperInitializeParam param)
WDSWrapperErrCode WDS_WrapperCleanup (void)
WDSWrapperErrCode WDS_WrapperStartScan (void)
WDSWrapperErrCode WDS_WrapperStopScan (void)
WDSWrapperErrCode WDS_WrapperCheckValidBeacon (void)
WDSWrapperErrCode WDS_WrapperSetArgumentParam (void)
WDSWrapperErrCode WDS_WrapperCheckThreadRunning (void)
OSThread * WDS_WrapperGetOSThread (void)
-


説明

-WDSライブラリのラッパー -

-

作者:
S.Nakata
-
日付:
2008/06/24
-
バージョン:
01.00
-

関数

- -
-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCheckThreadRunning (void   ) 
-
-
- -

-WDSコントロールスレッドが実行中か確認します

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: WDSコントロールスレッドが実行中

-WDSWRAPPER_ERRCODE_FAILURE: WDSコントロールスレッドは停止している

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCheckValidBeacon (void   ) 
-
-
- -

-直前に完了した間欠受信で有効な親機ビーコンを受け取ったか確認します

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 直前に完了した間欠受信で有効な親機ビーコンを受け取った

-WDSWRAPPER_ERRCODE_FAILURE: 直前に完了した間欠受信で有効な親機ビーコンを受け取っていない

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

-
覚え書き:
ライブラリ初期化時に指定したコールバック関数の中でのみ呼び出して下さい
- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCleanup (void   ) 
-
-
- -

-WDSコントロールスレッドを停止し、WDSラッパーライブラリを解放します。
- 解放処理完了の直前にコールバックが発生します。
- コールバック関数にエラーが通知されることはありません。

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS WDSラッパー解放を開始

-WDSWRAPPER_ERRCODE_OPERATING WDSラッパー解放を実行中

-WDSWRAPPER_ERRCODE_UNINITIALIZED WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
OSThread* WDS_WrapperGetOSThread (void   ) 
-
-
- -

-WDSコントロールスレッドが使用しているOSThreadへのポインタを得ます

引数:
- - -
なし 
-
-
戻り値:
NULL: WDSラッパーライブラリが初期化されていない

-NULL以外: 実行中・あるいは停止中のOSThreadへのポインタ

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperInitialize (WDSWrapperInitializeParam  param  ) 
-
-
- -

-WDSラッパーライブラリ初期化の非同期処理を開始します。
- 初期化処理完了時にコールバックが発生します。
- コールバック関数でエラー通知を受け取った場合は、ライブラリが自動的に解放されるのを待ってください。

引数:
- - -
param WDSラッパー初期化パラメータ
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 初期化処理を開始

-WDSWRAPPER_ERRCODE_INITIALIZED: WDSラッパーライブラリは初期化済み

-WDSWRAPPER_ERRCODE_FAILURE: 初期化に失敗

-
覚え書き:
・WDSコントロールスレッドは生成直後から間欠スキャンを実行しています
- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperSetArgumentParam (void   ) 
-
-
- -

-直前に完了した間欠受信で受け取ったビーコン情報をArgument領域にセットします

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 親機ビーコン情報がArgument領域にセットされた

-WDSWRAPPER_ERRCODE_FAILURE: 親機ビーコン情報をArgument領域にセットできなかった

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperStartScan (void   ) 
-
-
- -

-WDSコントロールスレッドのステートを間欠受信状態に変更します。
- ステートの変更に成功すると、以後一回の間欠受信が完了するたびにコールバックが呼び出されます。
- コールバック関数でエラー通知を受け取った場合は、ライブラリが自動的に解放されるのを待ってください。

戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: ステート変更に成功(コールバック発生を待ってください)

-WDSWRAPPER_ERRCODE_FAILURE: 間欠受信に移行できるステートでない(現在のステートが維持されます)

-WDSWRAPPER_ERRCIDE_OPERATING: すでにステートが間欠受信状態

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperStopScan (void   ) 
-
-
- -

-WDSコントロールスレッドのステートを間欠受信停止状態に設定します。
- 間欠受信が実際に停止した際にコールバックが呼び出されます。
- コールバックでエラーが通知されることはありません。

戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: ステート変更に成功

-WDSWRAPPER_ERRCIDE_OPERATING: すでにステートが間欠受信停止状態

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

-
覚え書き:
ステート変更が行われてから間欠受信が停止するまでには20ms程度の時間がかかります
- -
-

-

-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/_w_d_s_wrapper_8h.html b/man/WDS_Wrapper/html/_w_d_s_wrapper_8h.html deleted file mode 100644 index 07e28641..00000000 --- a/man/WDS_Wrapper/html/_w_d_s_wrapper_8h.html +++ /dev/null @@ -1,563 +0,0 @@ - - -WDSWrapper: include/WDSWrapper.h - - - - - -
-

include/WDSWrapper.h

#include "WDS.h"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

データ構造

struct  WDSWrapperInitializeParam
 WDS_WrapperInitialize関数に与える初期化パラメータ [詳細]
struct  WDSWrapperCallbackParam
 WDSラッパーが呼び出すコールバック関数に与えられる引数用の構造体 [詳細]

マクロ定義

#define WDSWRAPPER_STACKSIZE   4096
 WDSラッパーが使用するスレッドスタックの推奨サイズ
#define WDSWRAPPER_SCANPERIOD   3000
 WDSラッパーがスキャンを継続する時間[msec]
#define WDSWRAPPER_WAITPERIOD   3000
 WDSラッパーがスキャンを中断する時間[msec]

型定義

typedef void(* WDSWrapperCallbackFunc )(void *arg)
 WDSWrapperライブラリが使用するコールバック関数型
typedef void *(* WDSWrapperAlloc )(u32 size)
 WDSラッパー内部で使用するアロケーター型
typedef void(* WDSWrapperFree )(void *ptr)
 WDSラッパー内部で使用するアロケーター型

列挙型

enum  WDSWrapperErrCode {
-  WDSWRAPPER_ERRCODE_SUCCESS = 0, -
-  WDSWRAPPER_ERRCODE_FAILURE = 1, -
-  WDSWRAPPER_ERRCODE_OPERATING = 2, -
-  WDSWRAPPER_ERRCODE_INITIALIZED = 3, -
-  WDSWRAPPER_ERRCODE_UNINITIALIZED = 4 -
- }
 処理結果をあらわす列挙型 [詳細]
enum  WDSWrapperCallback {
-  WDSWRAPPER_CALLBACK_INITIALIZE = 0, -
-  WDSWRAPPER_CALLBACK_CLEANUP = 1, -
-  WDSWRAPPER_CALLBACK_STARTSCAN = 2, -
-  WDSWRAPPER_CALLBACK_STARTSCAN2 = 3, -
-  WDSWRAPPER_CALLBACK_STOPSCAN = 4 -
- }
 コールバック発生要因をあらわす列挙型 [詳細]
enum  WDSWrapperStateThreadState {
-  WDSWRAPPER_STATE_BEFOREINIT, -
-  WDSWRAPPER_STATE_INIT, -
-  WDSWRAPPER_STATE_WAITINIT, -
-  WDSWRAPPER_STATE_SCAN, -
-  WDSWRAPPER_STATE_WAITSCAN, -
-  WDSWRAPPER_STATE_ENDSCAN, -
-  WDSWRAPPER_STATE_WAITENDSCAN, -
-  WDSWRAPPER_STATE_END, -
-  WDSWRAPPER_STATE_WAITEND, -
-  WDSWRAPPER_STATE_IDLE, -
-  WDSWRAPPER_STATE_TERMINATE -
- }
 WDSラッパーののステートをあらわす列挙型 [詳細]

関数

WDSWrapperErrCode WDS_WrapperInitialize (WDSWrapperInitializeParam param)
WDSWrapperErrCode WDS_WrapperCleanup (void)
WDSWrapperErrCode WDS_WrapperStartScan (void)
WDSWrapperErrCode WDS_WrapperStopScan (void)
WDSWrapperErrCode WDS_WrapperCheckValidBeacon (void)
WDSWrapperErrCode WDS_WrapperSetArgumentParam (void)
WDSWrapperErrCode WDS_WrapperCheckThreadRunning (void)
OSThread * WDS_WrapperGetOSThread (void)
-

マクロ定義

- -
-
- - - - -
#define WDSWRAPPER_SCANPERIOD   3000
-
-
- -

-WDSラッパーがスキャンを継続する時間[msec] -

- -

-

- -

-
- - - - -
#define WDSWRAPPER_STACKSIZE   4096
-
-
- -

-WDSラッパーが使用するスレッドスタックの推奨サイズ -

- -

-

- -

-
- - - - -
#define WDSWRAPPER_WAITPERIOD   3000
-
-
- -

-WDSラッパーがスキャンを中断する時間[msec] -

- -

-

-


型定義

- -
-
- - - - -
typedef void*( * WDSWrapperAlloc)(u32 size)
-
-
- -

-WDSラッパー内部で使用するアロケーター型 -

- -

-

- -

-
- - - - -
typedef void( * WDSWrapperCallbackFunc)(void *arg)
-
-
- -

-WDSWrapperライブラリが使用するコールバック関数型 -

-

覚え書き:
・引数argは必ずWDSWrapperCallback型変数へのポインタ
- -
-

- -

-
- - - - -
typedef void( * WDSWrapperFree)(void *ptr)
-
-
- -

-WDSラッパー内部で使用するアロケーター型 -

- -

-

-


列挙型

- -
-
- - - - -
enum WDSWrapperCallback
-
-
- -

-コールバック発生要因をあらわす列挙型 -

-

列挙型の値:
- - - - - - -
WDSWRAPPER_CALLBACK_INITIALIZE  -WDS_WrapperInitialize関数によるコールバック
WDSWRAPPER_CALLBACK_CLEANUP  -WDS_WrapperCleanup関数によるコールバック
WDSWRAPPER_CALLBACK_STARTSCAN  -WDS_WrapperStartScan関数によるコールバック
WDSWRAPPER_CALLBACK_STARTSCAN2  -WDS_WrapperStartScan関数によるコールバック(間欠スキャン1回終了)
WDSWRAPPER_CALLBACK_STOPSCAN  -WDS_WrapperStopScan関数によるコールバック
-
- -
-

- -

-
- - - - -
enum WDSWrapperErrCode
-
-
- -

-処理結果をあらわす列挙型 -

-

列挙型の値:
- - - - - - -
WDSWRAPPER_ERRCODE_SUCCESS  -処理成功
WDSWRAPPER_ERRCODE_FAILURE  -処理失敗
WDSWRAPPER_ERRCODE_OPERATING  -処理実行中
WDSWRAPPER_ERRCODE_INITIALIZED  -WDSラッパーライブラリ初期化済み
WDSWRAPPER_ERRCODE_UNINITIALIZED  -WDSラッパーライブラリ未初期化
-
- -
-

- -

-
- - - - -
enum WDSWrapperStateThreadState
-
-
- -

-WDSラッパーののステートをあらわす列挙型 -

-

列挙型の値:
- - - - - - - - - - - - -
WDSWRAPPER_STATE_BEFOREINIT  -初期化開始待ちステート
WDSWRAPPER_STATE_INIT  -初期化開始ステート
WDSWRAPPER_STATE_WAITINIT  -初期化完了待ちステート
WDSWRAPPER_STATE_SCAN  -スキャン開始ステート
WDSWRAPPER_STATE_WAITSCAN  -スキャン完了待ちステート
WDSWRAPPER_STATE_ENDSCAN  -スキャン中断ステート
WDSWRAPPER_STATE_WAITENDSCAN  -スキャン中断完了待ちステート
WDSWRAPPER_STATE_END  -WDS解放開始ステート
WDSWRAPPER_STATE_WAITEND  -WDS解放完了待ちステート
WDSWRAPPER_STATE_IDLE  -アイドルステート
WDSWRAPPER_STATE_TERMINATE  -WDSラッパー解放ステート
-
- -
-

-


関数

- -
-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCheckThreadRunning (void   ) 
-
-
- -

-WDSコントロールスレッドが実行中か確認します

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: WDSコントロールスレッドが実行中

-WDSWRAPPER_ERRCODE_FAILURE: WDSコントロールスレッドは停止している

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCheckValidBeacon (void   ) 
-
-
- -

-直前に完了した間欠受信で有効な親機ビーコンを受け取ったか確認します

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 直前に完了した間欠受信で有効な親機ビーコンを受け取った

-WDSWRAPPER_ERRCODE_FAILURE: 直前に完了した間欠受信で有効な親機ビーコンを受け取っていない

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

-
覚え書き:
ライブラリ初期化時に指定したコールバック関数の中でのみ呼び出して下さい
- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperCleanup (void   ) 
-
-
- -

-WDSコントロールスレッドを停止し、WDSラッパーライブラリを解放します。
- 解放処理完了の直前にコールバックが発生します。
- コールバック関数にエラーが通知されることはありません。

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS WDSラッパー解放を開始

-WDSWRAPPER_ERRCODE_OPERATING WDSラッパー解放を実行中

-WDSWRAPPER_ERRCODE_UNINITIALIZED WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
OSThread* WDS_WrapperGetOSThread (void   ) 
-
-
- -

-WDSコントロールスレッドが使用しているOSThreadへのポインタを得ます

引数:
- - -
なし 
-
-
戻り値:
NULL: WDSラッパーライブラリが初期化されていない

-NULL以外: 実行中・あるいは停止中のOSThreadへのポインタ

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperInitialize (WDSWrapperInitializeParam  param  ) 
-
-
- -

-WDSラッパーライブラリ初期化の非同期処理を開始します。
- 初期化処理完了時にコールバックが発生します。
- コールバック関数でエラー通知を受け取った場合は、ライブラリが自動的に解放されるのを待ってください。

引数:
- - -
param WDSラッパー初期化パラメータ
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 初期化処理を開始

-WDSWRAPPER_ERRCODE_INITIALIZED: WDSラッパーライブラリは初期化済み

-WDSWRAPPER_ERRCODE_FAILURE: 初期化に失敗

-
覚え書き:
・WDSコントロールスレッドは生成直後から間欠スキャンを実行しています
- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperSetArgumentParam (void   ) 
-
-
- -

-直前に完了した間欠受信で受け取ったビーコン情報をArgument領域にセットします

引数:
- - -
なし 
-
-
戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: 親機ビーコン情報がArgument領域にセットされた

-WDSWRAPPER_ERRCODE_FAILURE: 親機ビーコン情報をArgument領域にセットできなかった

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperStartScan (void   ) 
-
-
- -

-WDSコントロールスレッドのステートを間欠受信状態に変更します。
- ステートの変更に成功すると、以後一回の間欠受信が完了するたびにコールバックが呼び出されます。
- コールバック関数でエラー通知を受け取った場合は、ライブラリが自動的に解放されるのを待ってください。

戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: ステート変更に成功(コールバック発生を待ってください)

-WDSWRAPPER_ERRCODE_FAILURE: 間欠受信に移行できるステートでない(現在のステートが維持されます)

-WDSWRAPPER_ERRCIDE_OPERATING: すでにステートが間欠受信状態

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

- -
-

- -

-
- - - - - - - - - -
WDSWrapperErrCode WDS_WrapperStopScan (void   ) 
-
-
- -

-WDSコントロールスレッドのステートを間欠受信停止状態に設定します。
- 間欠受信が実際に停止した際にコールバックが呼び出されます。
- コールバックでエラーが通知されることはありません。

戻り値:
WDSWRAPPER_ERRCODE_SUCCESS: ステート変更に成功

-WDSWRAPPER_ERRCIDE_OPERATING: すでにステートが間欠受信停止状態

-WDSWRAPPER_ERRCODE_UNINITIALIZED: WDSラッパーライブラリが初期化されていない

-
覚え書き:
ステート変更が行われてから間欠受信が停止するまでには20ms程度の時間がかかります
- -
-

-

-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/annotated.html b/man/WDS_Wrapper/html/annotated.html deleted file mode 100644 index a1a2a331..00000000 --- a/man/WDS_Wrapper/html/annotated.html +++ /dev/null @@ -1,35 +0,0 @@ - - -WDSWrapper: データ構造 - - - - - -
-

データ構造

データ構造の説明です。 - - - -
WDSWrapperCallbackParamWDSラッパーが呼び出すコールバック関数に与えられる引数用の構造体
WDSWrapperInitializeParamWDS_WrapperInitialize関数に与える初期化パラメータ
WDSWrapperWorkWDSラッパーのワーク領域
-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/classes.html b/man/WDS_Wrapper/html/classes.html deleted file mode 100644 index 15908992..00000000 --- a/man/WDS_Wrapper/html/classes.html +++ /dev/null @@ -1,34 +0,0 @@ - - -WDSWrapper: アルファベット順一覧 - - - - - -
-

データ構造索引

W

- -
  W  
-
WDSWrapperCallbackParam   WDSWrapperInitializeParam   WDSWrapperWork   

W

-

-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/doxygen.css b/man/WDS_Wrapper/html/doxygen.css deleted file mode 100644 index 22c48430..00000000 --- a/man/WDS_Wrapper/html/doxygen.css +++ /dev/null @@ -1,473 +0,0 @@ -BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV { - font-family: Geneva, Arial, Helvetica, sans-serif; -} -BODY,TD { - font-size: 90%; -} -H1 { - text-align: center; - font-size: 160%; -} -H2 { - font-size: 120%; -} -H3 { - font-size: 100%; -} -CAPTION { - font-weight: bold -} -DIV.qindex { - width: 100%; - background-color: #e8eef2; - border: 1px solid #84b0c7; - text-align: center; - margin: 2px; - padding: 2px; - line-height: 140%; -} -DIV.navpath { - width: 100%; - background-color: #e8eef2; - border: 1px solid #84b0c7; - text-align: center; - margin: 2px; - padding: 2px; - line-height: 140%; -} -DIV.navtab { - background-color: #e8eef2; - border: 1px solid #84b0c7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} -TD.navtab { - font-size: 70%; -} -A.qindex { - text-decoration: none; - font-weight: bold; - color: #1A419D; -} -A.qindex:visited { - text-decoration: none; - font-weight: bold; - color: #1A419D -} -A.qindex:hover { - text-decoration: none; - background-color: #ddddff; -} -A.qindexHL { - text-decoration: none; - font-weight: bold; - background-color: #6666cc; - color: #ffffff; - border: 1px double #9295C2; -} -A.qindexHL:hover { - text-decoration: none; - background-color: #6666cc; - color: #ffffff; -} -A.qindexHL:visited { - text-decoration: none; - background-color: #6666cc; - color: #ffffff -} -A.el { - text-decoration: none; - font-weight: bold -} -A.elRef { - font-weight: bold -} -A.code:link { - text-decoration: none; - font-weight: normal; - color: #0000FF -} -A.code:visited { - text-decoration: none; - font-weight: normal; - color: #0000FF -} -A.codeRef:link { - font-weight: normal; - color: #0000FF -} -A.codeRef:visited { - font-weight: normal; - color: #0000FF -} -A:hover { - text-decoration: none; - background-color: #f2f2ff -} -DL.el { - margin-left: -1cm -} -.fragment { - font-family: monospace, fixed; - font-size: 95%; -} -PRE.fragment { - border: 1px solid #CCCCCC; - background-color: #f5f5f5; - margin-top: 4px; - margin-bottom: 4px; - margin-left: 2px; - margin-right: 8px; - padding-left: 6px; - padding-right: 6px; - padding-top: 4px; - padding-bottom: 4px; -} -DIV.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px -} - -DIV.groupHeader { - margin-left: 16px; - margin-top: 12px; - margin-bottom: 6px; - font-weight: bold; -} -DIV.groupText { - margin-left: 16px; - font-style: italic; - font-size: 90% -} -BODY { - background: white; - color: black; - margin-right: 20px; - margin-left: 20px; -} -TD.indexkey { - background-color: #e8eef2; - font-weight: bold; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px; - border: 1px solid #CCCCCC; -} -TD.indexvalue { - background-color: #e8eef2; - font-style: italic; - padding-right : 10px; - padding-top : 2px; - padding-left : 10px; - padding-bottom : 2px; - margin-left : 0px; - margin-right : 0px; - margin-top : 2px; - margin-bottom : 2px; - border: 1px solid #CCCCCC; -} -TR.memlist { - background-color: #f0f0f0; -} -P.formulaDsp { - text-align: center; -} -IMG.formulaDsp { -} -IMG.formulaInl { - vertical-align: middle; -} -SPAN.keyword { color: #008000 } -SPAN.keywordtype { color: #604020 } -SPAN.keywordflow { color: #e08000 } -SPAN.comment { color: #800000 } -SPAN.preprocessor { color: #806020 } -SPAN.stringliteral { color: #002080 } -SPAN.charliteral { color: #008080 } -SPAN.vhdldigit { color: #ff00ff } -SPAN.vhdlchar { color: #000000 } -SPAN.vhdlkeyword { color: #700070 } -SPAN.vhdllogic { color: #ff0000 } - -.mdescLeft { - padding: 0px 8px 4px 8px; - font-size: 80%; - font-style: italic; - background-color: #FAFAFA; - border-top: 1px none #E0E0E0; - border-right: 1px none #E0E0E0; - border-bottom: 1px none #E0E0E0; - border-left: 1px none #E0E0E0; - margin: 0px; -} -.mdescRight { - padding: 0px 8px 4px 8px; - font-size: 80%; - font-style: italic; - background-color: #FAFAFA; - border-top: 1px none #E0E0E0; - border-right: 1px none #E0E0E0; - border-bottom: 1px none #E0E0E0; - border-left: 1px none #E0E0E0; - margin: 0px; -} -.memItemLeft { - padding: 1px 0px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-top-style: solid; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-size: 80%; -} -.memItemRight { - padding: 1px 8px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-top-style: solid; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-size: 80%; -} -.memTemplItemLeft { - padding: 1px 0px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-top-style: none; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-size: 80%; -} -.memTemplItemRight { - padding: 1px 8px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-top-style: none; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - background-color: #FAFAFA; - font-size: 80%; -} -.memTemplParams { - padding: 1px 0px 0px 8px; - margin: 4px; - border-top-width: 1px; - border-right-width: 1px; - border-bottom-width: 1px; - border-left-width: 1px; - border-top-color: #E0E0E0; - border-right-color: #E0E0E0; - border-bottom-color: #E0E0E0; - border-left-color: #E0E0E0; - border-top-style: solid; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - color: #606060; - background-color: #FAFAFA; - font-size: 80%; -} -.search { - color: #003399; - font-weight: bold; -} -FORM.search { - margin-bottom: 0px; - margin-top: 0px; -} -INPUT.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -TD.tiny { - font-size: 75%; -} -a { - color: #1A41A8; -} -a:visited { - color: #2A3798; -} -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #84b0c7; -} -TH.dirtab { - background: #e8eef2; - font-weight: bold; -} -HR { - height: 1px; - border: none; - border-top: 1px solid black; -} - -/* Style for detailed member documentation */ -.memtemplate { - font-size: 80%; - color: #606060; - font-weight: normal; - margin-left: 3px; -} -.memnav { - background-color: #e8eef2; - border: 1px solid #84b0c7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} -.memitem { - padding: 4px; - background-color: #eef3f5; - border-width: 1px; - border-style: solid; - border-color: #dedeee; - -moz-border-radius: 8px 8px 8px 8px; -} -.memname { - white-space: nowrap; - font-weight: bold; -} -.memdoc{ - padding-left: 10px; -} -.memproto { - background-color: #d5e1e8; - width: 100%; - border-width: 1px; - border-style: solid; - border-color: #84b0c7; - font-weight: bold; - -moz-border-radius: 8px 8px 8px 8px; -} -.paramkey { - text-align: right; -} -.paramtype { - white-space: nowrap; -} -.paramname { - color: #602020; - font-style: italic; - white-space: nowrap; -} -/* End Styling for detailed member documentation */ - -/* for the tree view */ -.ftvtree { - font-family: sans-serif; - margin:0.5em; -} -/* these are for tree view when used as main index */ -.directory { - font-size: 9pt; - font-weight: bold; -} -.directory h3 { - margin: 0px; - margin-top: 1em; - font-size: 11pt; -} - -/* The following two styles can be used to replace the root node title */ -/* with an image of your choice. Simply uncomment the next two styles, */ -/* specify the name of your image and be sure to set 'height' to the */ -/* proper pixel height of your image. */ - -/* .directory h3.swap { */ -/* height: 61px; */ -/* background-repeat: no-repeat; */ -/* background-image: url("yourimage.gif"); */ -/* } */ -/* .directory h3.swap span { */ -/* display: none; */ -/* } */ - -.directory > h3 { - margin-top: 0; -} -.directory p { - margin: 0px; - white-space: nowrap; -} -.directory div { - display: none; - margin: 0px; -} -.directory img { - vertical-align: -30%; -} -/* these are for tree view when not used as main index */ -.directory-alt { - font-size: 100%; - font-weight: bold; -} -.directory-alt h3 { - margin: 0px; - margin-top: 1em; - font-size: 11pt; -} -.directory-alt > h3 { - margin-top: 0; -} -.directory-alt p { - margin: 0px; - white-space: nowrap; -} -.directory-alt div { - display: none; - margin: 0px; -} -.directory-alt img { - vertical-align: -30%; -} - diff --git a/man/WDS_Wrapper/html/doxygen.png b/man/WDS_Wrapper/html/doxygen.png deleted file mode 100644 index f0a274bb..00000000 Binary files a/man/WDS_Wrapper/html/doxygen.png and /dev/null differ diff --git a/man/WDS_Wrapper/html/files.html b/man/WDS_Wrapper/html/files.html deleted file mode 100644 index 90f3c9dc..00000000 --- a/man/WDS_Wrapper/html/files.html +++ /dev/null @@ -1,33 +0,0 @@ - - -WDSWrapper: ファイル索引 - - - - - -
-

ファイル一覧

これはファイル一覧です。 - - -
include/WDSWrapper.h
src/WDSWrapper.cWDSライブラリのラッパー
-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/functions.html b/man/WDS_Wrapper/html/functions.html deleted file mode 100644 index 1cb49abb..00000000 --- a/man/WDS_Wrapper/html/functions.html +++ /dev/null @@ -1,79 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-これはフィールドの一覧でそれぞれが属している構造体/共用体の説明へリンクしています。 -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/functions_vars.html b/man/WDS_Wrapper/html/functions_vars.html deleted file mode 100644 index ec0ee8a1..00000000 --- a/man/WDS_Wrapper/html/functions_vars.html +++ /dev/null @@ -1,79 +0,0 @@ - - -WDSWrapper: データフィールド - 変数 - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals.html b/man/WDS_Wrapper/html/globals.html deleted file mode 100644 index 5703bfc2..00000000 --- a/man/WDS_Wrapper/html/globals.html +++ /dev/null @@ -1,132 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-これは関数、変数、マクロ、Enum、Typedef の一覧です。それぞれが属しているファイルの説明へリンクしています。 -

-

- w -

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals_defs.html b/man/WDS_Wrapper/html/globals_defs.html deleted file mode 100644 index 2006cfd1..00000000 --- a/man/WDS_Wrapper/html/globals_defs.html +++ /dev/null @@ -1,49 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals_enum.html b/man/WDS_Wrapper/html/globals_enum.html deleted file mode 100644 index b1bc810e..00000000 --- a/man/WDS_Wrapper/html/globals_enum.html +++ /dev/null @@ -1,49 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals_eval.html b/man/WDS_Wrapper/html/globals_eval.html deleted file mode 100644 index 58c88eec..00000000 --- a/man/WDS_Wrapper/html/globals_eval.html +++ /dev/null @@ -1,85 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals_func.html b/man/WDS_Wrapper/html/globals_func.html deleted file mode 100644 index 3773aa77..00000000 --- a/man/WDS_Wrapper/html/globals_func.html +++ /dev/null @@ -1,67 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/globals_type.html b/man/WDS_Wrapper/html/globals_type.html deleted file mode 100644 index 76f01ed7..00000000 --- a/man/WDS_Wrapper/html/globals_type.html +++ /dev/null @@ -1,49 +0,0 @@ - - -WDSWrapper: データフィールド - - - - - -
-  -

-

-
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/index.html b/man/WDS_Wrapper/html/index.html deleted file mode 100644 index 335f3bf6..00000000 --- a/man/WDS_Wrapper/html/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - -WDSWrapper: メインページ - - - - - -
-

WDSWrapper ドキュメント

-

-

-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_callback_param.html b/man/WDS_Wrapper/html/struct_w_d_s_wrapper_callback_param.html deleted file mode 100644 index 528f358c..00000000 --- a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_callback_param.html +++ /dev/null @@ -1,83 +0,0 @@ - - -WDSWrapper: 構造体 WDSWrapperCallbackParam - - - - - -
-

構造体 WDSWrapperCallbackParam

WDSラッパーが呼び出すコールバック関数に与えられる引数用の構造体 -[詳細] -

-#include <WDSWrapper.h> -

- - - - - - - - - -

変数

WDSWrapperCallback callback
 コールバック発生要因
WDSWrapperErrCode errcode
 エラーコード
-


説明

-WDSラッパーが呼び出すコールバック関数に与えられる引数用の構造体

構造体

- -
- -
- -

-コールバック発生要因 -

- -

-

- -

- -
- -

-エラーコード -

- -

-

-


この構造体の説明は次のファイルから生成されました: -
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_initialize_param.html b/man/WDS_Wrapper/html/struct_w_d_s_wrapper_initialize_param.html deleted file mode 100644 index fb89ee4c..00000000 --- a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_initialize_param.html +++ /dev/null @@ -1,143 +0,0 @@ - - -WDSWrapper: 構造体 WDSWrapperInitializeParam - - - - - -
-

構造体 WDSWrapperInitializeParam

WDS_WrapperInitialize関数に与える初期化パラメータ -[詳細] -

-#include <WDSWrapper.h> -

- - - - - - - - - - - - - - - - - - -

変数

u32 threadprio
 WDSコントロールスレッドの優先度
u16 dmano
 WMライブラリが使用するDMA番号
WDSWrapperCallbackFunc callback
 WDSコントロールスレッドから呼び出されるコールバック関数へのポインタ
WDSWrapperAlloc alloc
 WDSラッパーが使用するアロケータ
WDSWrapperFree free
 WDSラッパーが使用するアロケータ
-


説明

-WDS_WrapperInitialize関数に与える初期化パラメータ

構造体

- -
- -
- -

-WDSコントロールスレッドの優先度 -

- -

-

- -

- -
- -

-WMライブラリが使用するDMA番号 -

- -

-

- -

- -
- -

-WDSコントロールスレッドから呼び出されるコールバック関数へのポインタ -

- -

-

- -

- -
- -

-WDSラッパーが使用するアロケータ -

- -

-

- -

- -
- -

-WDSラッパーが使用するアロケータ -

- -

-

-


この構造体の説明は次のファイルから生成されました: -
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_work.html b/man/WDS_Wrapper/html/struct_w_d_s_wrapper_work.html deleted file mode 100644 index 36026951..00000000 --- a/man/WDS_Wrapper/html/struct_w_d_s_wrapper_work.html +++ /dev/null @@ -1,301 +0,0 @@ - - -WDSWrapper: 構造体 WDSWrapperWork - - - - - -
-

構造体 WDSWrapperWork

WDSラッパーのワーク領域 -[詳細] -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

変数

u8 * stack
 WDSラッパーが使用するスタック
OSThread thread
 WDSラッパーが使用するスレッド構造体
u8 * wdswork
 WDSが使用するワークエリア
WDSBriefApInfo briefapinfo [WDS_APINFO_MAX]
 WDSラッパーがWDSを使用した結果を格納する領域
int briefapinfonum
 WDSラッパーがWDSを使用した結果を格納する領域
WDSWrapperInitializeParam initparam
 初期化時パラメータのコピー
WDSWrapperStateThreadState state
 WDSラッパーのステート
OSTick tickstart
 各種時間測定用
BOOL terminate
 解放開始フラグ
BOOL idle
 間欠スキャン中断フラグ
BOOL restart
 間欠スキャン再開フラグ
OSDeliverArgInfo deliverinfo
 TWL用アプリ間引数ワークエリア
BOOL callingback
 コールバック関数呼び出し中はTRUE
-


説明

-WDSラッパーのワーク領域

構造体

- -
-
- - - - -
u8* WDSWrapperWork::stack
-
-
- -

-WDSラッパーが使用するスタック -

- -

-

- -

-
- - - - -
OSThread WDSWrapperWork::thread
-
-
- -

-WDSラッパーが使用するスレッド構造体 -

- -

-

- -

-
- - - - -
u8* WDSWrapperWork::wdswork
-
-
- -

-WDSが使用するワークエリア -

- -

-

- -

-
- - - - -
WDSBriefApInfo WDSWrapperWork::briefapinfo[WDS_APINFO_MAX]
-
-
- -

-WDSラッパーがWDSを使用した結果を格納する領域 -

- -

-

- -

- -
- -

-WDSラッパーがWDSを使用した結果を格納する領域 -

- -

-

- -

- -
- -

-初期化時パラメータのコピー -

- -

-

- -

- -
- -

-WDSラッパーのステート -

- -

-

- -

-
- - - - -
OSTick WDSWrapperWork::tickstart
-
-
- -

-各種時間測定用 -

- -

-

- -

-
- - - - -
BOOL WDSWrapperWork::terminate
-
-
- -

-解放開始フラグ -

- -

-

- -

-
- - - - -
BOOL WDSWrapperWork::idle
-
-
- -

-間欠スキャン中断フラグ -

- -

-

- -

-
- - - - -
BOOL WDSWrapperWork::restart
-
-
- -

-間欠スキャン再開フラグ -

- -

-

- -

-
- - - - -
OSDeliverArgInfo WDSWrapperWork::deliverinfo
-
-
- -

-TWL用アプリ間引数ワークエリア -

- -

-

- -

-
- - - - -
BOOL WDSWrapperWork::callingback
-
-
- -

-コールバック関数呼び出し中はTRUE -

- -

-

-


この構造体の説明は次のファイルから生成されました: -
-
WDSWrapperに対してThu Jul 3 18:05:09 2008に生成されました。  - -doxygen 1.5.6
- - diff --git a/man/WDS_Wrapper/html/tab_b.gif b/man/WDS_Wrapper/html/tab_b.gif deleted file mode 100644 index 0d623483..00000000 Binary files a/man/WDS_Wrapper/html/tab_b.gif and /dev/null differ diff --git a/man/WDS_Wrapper/html/tab_l.gif b/man/WDS_Wrapper/html/tab_l.gif deleted file mode 100644 index 9b1e6337..00000000 Binary files a/man/WDS_Wrapper/html/tab_l.gif and /dev/null differ diff --git a/man/WDS_Wrapper/html/tab_r.gif b/man/WDS_Wrapper/html/tab_r.gif deleted file mode 100644 index ce9dd9f5..00000000 Binary files a/man/WDS_Wrapper/html/tab_r.gif and /dev/null differ diff --git a/man/WDS_Wrapper/html/tabs.css b/man/WDS_Wrapper/html/tabs.css deleted file mode 100644 index 95f00a91..00000000 --- a/man/WDS_Wrapper/html/tabs.css +++ /dev/null @@ -1,102 +0,0 @@ -/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */ - -DIV.tabs -{ - float : left; - width : 100%; - background : url("tab_b.gif") repeat-x bottom; - margin-bottom : 4px; -} - -DIV.tabs UL -{ - margin : 0px; - padding-left : 10px; - list-style : none; -} - -DIV.tabs LI, DIV.tabs FORM -{ - display : inline; - margin : 0px; - padding : 0px; -} - -DIV.tabs FORM -{ - float : right; -} - -DIV.tabs A -{ - float : left; - background : url("tab_r.gif") no-repeat right top; - border-bottom : 1px solid #84B0C7; - font-size : x-small; - font-weight : bold; - text-decoration : none; -} - -DIV.tabs A:hover -{ - background-position: 100% -150px; -} - -DIV.tabs A:link, DIV.tabs A:visited, -DIV.tabs A:active, DIV.tabs A:hover -{ - color: #1A419D; -} - -DIV.tabs SPAN -{ - float : left; - display : block; - background : url("tab_l.gif") no-repeat left top; - padding : 5px 9px; - white-space : nowrap; -} - -DIV.tabs INPUT -{ - float : right; - display : inline; - font-size : 1em; -} - -DIV.tabs TD -{ - font-size : x-small; - font-weight : bold; - text-decoration : none; -} - - - -/* Commented Backslash Hack hides rule from IE5-Mac \*/ -DIV.tabs SPAN {float : none;} -/* End IE5-Mac hack */ - -DIV.tabs A:hover SPAN -{ - background-position: 0% -150px; -} - -DIV.tabs LI.current A -{ - background-position: 100% -150px; - border-width : 0px; -} - -DIV.tabs LI.current SPAN -{ - background-position: 0% -150px; - padding-bottom : 6px; -} - -DIV.navpath -{ - background : none; - border : none; - border-bottom : 1px solid #84B0C7; -}