Ignore:
Timestamp:
Feb 1, 2019, 9:57:09 PM (5 years ago)
Author:
coas-nagasima
Message:

TINETとSocket APIなどを更新

Location:
asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/gr_sakura.ld

    r337 r364  
    5656                *(C_2)
    5757                *(C)
     58                _mrb_preset_const_start = .;
     59                *(.mrb_preset_const)
     60                _mrb_preset_const_end = .;
    5861                _erodata = .;
    5962        } > ROM
     
    111114                . = ALIGN(2);
    112115                *(D_2)
     116                _mrb_preset_data_start = .;
     117                *(.mrb_preset_data)
     118                _mrb_preset_data_end = .;
    113119                _edata = .;
    114120        } > RAM
  • asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/target_kernel_impl.c

    r337 r364  
    8181         *  シリアルポートの設定
    8282         */
    83         serial_opn_por(1);
    8483
    8584        /* ポートP20をTxD0, ポートP21をRxD0に */
  • asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/target_kernel_impl.h

    r337 r364  
    107107 */
    108108#ifdef TOPPERS_ENABLE_TRACE
    109 #define LOG_DSP_ENTER   ( 1 )
    110 #define LOG_DSP_LEAVE   ( 1 )
    111 #define LOG_INH_ENTER   ( 1 )
    112 #define LOG_INH_LEAVE   ( 1 )
    113 #define LOG_EXC_ENTER   ( 1 )
    114 #define LOG_EXC_LEAVE   ( 1 )
     109#define LOG_DSP_ENTER(dspno)
     110#define LOG_DSP_LEAVE(dspno)
     111#define LOG_INH_ENTER(inhno)
     112#define LOG_INH_LEAVE(inhno)
     113#define LOG_EXC_ENTER(excno)
     114#define LOG_EXC_LEAVE(excno)
    115115#else
    116 #define LOG_DSP_ENTER   ( 0 )
    117 #define LOG_DSP_LEAVE   ( 0 )
    118 #define LOG_INH_ENTER   ( 0 )
    119 #define LOG_INH_LEAVE   ( 0 )
    120 #define LOG_EXC_ENTER   ( 0 )
    121 #define LOG_EXC_LEAVE   ( 0 )
     116#undef LOG_DSP_ENTER
     117#undef LOG_DSP_LEAVE
     118#undef LOG_INH_ENTER
     119#undef LOG_INH_LEAVE
     120#undef LOG_EXC_ENTER
     121#undef LOG_EXC_LEAVE
    122122#endif
    123123
  • asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/target_sym.def

    r337 r364  
    1 LOG_DSP_ENTER
    2 LOG_DSP_LEAVE
    3 LOG_INH_ENTER
    4 LOG_INH_LEAVE
    5 LOG_EXC_ENTER
    6 LOG_EXC_LEAVE
    71SIL_DLY_TIM1
    82SIL_DLY_TIM2
  • asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/target_timer.c

    r337 r364  
    398398         */
    399399        if (probe_int(INTNO_TIMER1)) {
    400                 if(local_cnt < 0x8000)
     400                if (local_cnt < 0x8000)
    401401                        local_eut += 1;
    402402        }
Note: See TracChangeset for help on using the changeset viewer.