• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

12半音階によるトーン生成


File Info

Rev. 05c64c80a10b324b375562a6070f403efa4d0028
Tamaño 660 octetos
Tiempo 2013-06-03 23:41:51
Autor suikan
Log Message

最初のコミット

Content

/**
 * @file cmd_amakusa592.c
 * @author Shinichiro Nakamura
 * @brief amakusa592コマンドの実装。
 * @details
 */

#include "cmd.h"

/**
 * @brief コマンド関数。
 * @details
 * ntshell_taskを使用するBSPは、cmd_executeの実装を提供する。
 * VT100のシーケンスコード解釈や環境設定は上位で行われている。
 *
 * @param env コマンド環境構造体。
 * @param argc パラメータ数。
 * @param argv パラメータ。
 */
void cmd_execute(cmd_env_t *env, int argc, char **argv)
{
    int i;
    for (i = 0; i < argc; i++) {
        ntstdio_printf(CMD_NTSTDIO(env), "%d : '%s'\n", i, argv[i]);
    }
}