[[ファームウェア関数一覧>ファームウェア関数一覧#m34af414]] *DBGMCU_GetDEVID [#m02b9151] *DBGMCU_GetREVID [#m02b9151] #contents **ヘッダ宣言 [#y2721608] **関数プロトタイプ [#feb0e3e7] uint32_t DBGMCU_GetDEVID(void) uint32_t DBGMCU_GetREVID(void) **動作 [#l7503581] -デバイスIDを返却します。 -リビジョンIDを返却します。 **引数 [#db304dbc] -無し **戻り値 [#o91c1ee7] -uint32_t型&br; デバイスIDをuint32_t型で返却します。&br; リビジョンIDをuint32_t型で返却します。&br; **出力値 [#ec4627dc] -無し **呼び出し関数 [#i984072d] -無し **サンプル [#j13c5fc9] /* Get the device identifier */ uint32_t DevID = 0; DevID = DBGMCU_GetDEVID(); /* Get the device revision identifier */ uint32_t RevID = 0; RevID = DBGMCU_GetREVID(); **参照 [#nb3d9bb6] -