Ignore:
Timestamp:
Jul 5, 2020, 3:48:53 PM (4 years ago)
Author:
coas-nagasima
Message:

タスク名などを変更、定義場所の移動など

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/ntshell/src/main.h

    r331 r431  
    5353
    5454#define MAIN_PRIORITY   5               /* メインタスクの優先度 */
    55 #define MRUBY_PRIORITY  4               /* mruby実行タスクの優先度 */
     55#define SHELLCMD_PRIORITY       4               /* shellcmdタスクの優先度 */
    5656
    5757#define MAIN_STACK_SIZE         2048    /* メインタスクのスタック領域のサイズ */
    58 #define MRUBY_STACK_SIZE        0x00800000      /* mruby実行タスクのスタック領域のサイズ */
     58#define SHELLCMD_STACK_SIZE     0x00800000      /* shellcmdタスクのスタック領域のサイズ */
    5959
    6060#define NUM_MAIN_DATAQUEUE      1       /* メインタスクで待ち受けているデータキューのサイズ */
    61 #define NUM_MRUBY_DATAQUEUE     1       /* mruby実行タスクで待ち受けているデータキューのサイズ */
     61#define NUM_SHELLCMD_DATAQUEUE  1       /* shellcmdタスクで待ち受けているデータキューのサイズ */
    6262
    6363/*
     
    6969extern void main_task(intptr_t exinf);
    7070
    71 /* mruby実行タスク */
    72 extern void mruby_task(intptr_t exinf);
     71/* shellcmdタスク */
     72extern void shellcmd_task(intptr_t exinf);
    7373
    7474/*
Note: See TracChangeset for help on using the changeset viewer.