mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
VC 2010 Express でとりあえずビルドできます。 とりあえず実機上でも動いてる git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@345 013db118-44a6-b54f-8bf7-843cb86687b1
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
#ifndef _WIN32
|
|
|
|
// これら、発生しないはず
|
|
void fn_intwdti( ){}
|
|
void fn_intlvi( ){}
|
|
void fn_intp0(){}
|
|
void fn_intp1( ){}
|
|
void fn_intp2( ){}
|
|
void fn_intp3( ){}
|
|
void intp21_RFTx( ){}
|
|
// void fn_intp4(){ while(1){} } // pm.c
|
|
// void fn_intp5(){ while(1){} } // pm.c
|
|
// void fn_intp6(){ while(1){} } // pm.c
|
|
// void fn_intp7(){ while(1){} } // led.c
|
|
// void fn_intp21(){ while(1){} } // led.c
|
|
|
|
void fn_intcmp0( ){}
|
|
void fn_intcmp1( ){}
|
|
void fn_intdma0( ){}
|
|
// void fn_intdma1(){} // i2c_mcu.cにある
|
|
void fn_intst0( ){}
|
|
void fn_intsr0( ){}
|
|
void fn_intsre0( ){}
|
|
void fn_intst1( ){}
|
|
/* __interrupt void fn_intcsi10(){} */
|
|
// void fn_intiic10(){ while(1){} }
|
|
void fn_intsr1( ){}
|
|
void fn_intsre1( ){}
|
|
// void fn_intiica(){} // i2c.cにある
|
|
/* __interrupt void fn_inttm00(){} *//* sub.cにて定義 */
|
|
void fn_inttm01( ){}
|
|
void fn_inttm02( ){}
|
|
void fn_inttm03( ){}
|
|
// void fn_intad(){ while(1){} } // adc.c
|
|
void fn_intrtc( ){}
|
|
// void int_rtcint(){} // rtc.cにある
|
|
// void fn_intkr(){} // main.c
|
|
void fn_intmd( ){}
|
|
void fn_inttm04( ){}
|
|
void fn_inttm05( ){}
|
|
void fn_inttm06( ){}
|
|
void fn_inttm07( ){}
|
|
|
|
|
|
/* ========================================================
|
|
キーリターン割り込み
|
|
======================================================== */
|
|
void int_kr( )
|
|
{
|
|
// 起きるだけ
|
|
}
|
|
|
|
|
|
|
|
/* ========================================================
|
|
ext dc
|
|
======================================================== */
|
|
void intp4( )
|
|
{
|
|
// 起きるだけ
|
|
}
|
|
|
|
|
|
|
|
/* ========================================================
|
|
shell close
|
|
======================================================== */
|
|
void intp5( )
|
|
{
|
|
// 起きるだけ
|
|
}
|
|
|
|
#endif
|
|
|