mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-06-19 00:55:37 -04:00
・wdtリセットなど、マイコン再起動後にお知らせLEDのフルカラー判別を誤っていたのを修正
TSボードで黄色LEDが点いていたのが直りました ・WDTリセット割り込みが入らなくなってい他のを修正 ・POWクリック割り込みが入らないのを修正 git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@175 013db118-44a6-b54f-8bf7-843cb86687b1
This commit is contained in:
parent
4620fba44c
commit
21b34e899d
20
trunk/led.c
20
trunk/led.c
@ -147,7 +147,15 @@ void LED_init( )
|
||||
// ‚¨’m‚点LED‚ðŽ¯•Ê //
|
||||
system_status.info_fullcolor = 0;
|
||||
p_LED_duty_WiFi = &LED_duty_old_WiFi;
|
||||
if( system_status.model != MODEL_TS_BOARD )
|
||||
if( system_status.model == MODEL_TS_BOARD )
|
||||
{
|
||||
#ifdef _FORCE_INFO_LED_FULLCOLOR_
|
||||
// todo debug //
|
||||
system_status.info_fullcolor = 1;
|
||||
p_LED_duty_WiFi = &LED_duty_WiFi;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
INFO_LED_IS_FULLCOLOR_PU = 1;
|
||||
if( !INFO_LED_IS_FULLCOLOR_n )
|
||||
@ -158,11 +166,6 @@ void LED_init( )
|
||||
INFO_LED_IS_FULLCOLOR_PU = 0;
|
||||
}
|
||||
|
||||
#ifdef _FORCE_INFO_LED_FULLCOLOR_
|
||||
// todo debug //
|
||||
system_status.info_fullcolor = 1;
|
||||
p_LED_duty_WiFi = &LED_duty_WiFi;
|
||||
#endif
|
||||
|
||||
if( system_status.reboot )
|
||||
{
|
||||
@ -299,8 +302,6 @@ void tsk_led_pow( )
|
||||
======================================================== */
|
||||
static void led_pow_normal( )
|
||||
{
|
||||
u8 temp;
|
||||
|
||||
if( vreg_ctr[VREG_C_BT_REMAIN] <= BATT_TH_EMPTY )
|
||||
{
|
||||
led_pow_bt_empty();
|
||||
@ -432,11 +433,9 @@ static void led_pow_hotaru( )
|
||||
void tsk_led_wifi( )
|
||||
{
|
||||
static u8 task_interval;
|
||||
static u8 remain_wifi_tx;
|
||||
static u8 state_wifi_tx;
|
||||
static u8 flag_wifi_TX;
|
||||
|
||||
|
||||
if( task_interval-- != 0 )
|
||||
{
|
||||
return;
|
||||
@ -624,7 +623,6 @@ void tsk_led_cam( )
|
||||
{
|
||||
static u8 state_led_cam = 0;
|
||||
static u8 task_interval;
|
||||
static u8 state_led_cam_twl;
|
||||
u8 LED_CAM_mirror;
|
||||
|
||||
if( !cam_led_update )
|
||||
|
@ -75,14 +75,13 @@ void main( )
|
||||
}
|
||||
else
|
||||
{
|
||||
u8 my_resf = RESF; // ←読むと消え、生存区間の関係
|
||||
volatile u8 my_resf = RESF; // ←読むと消え、生存区間の関係
|
||||
if( ( my_resf & ( 0x10 | 0x80 ) ) != 0 )
|
||||
// 0x10 : WDRF,WDTでリセット
|
||||
// 0x80 : TRAP
|
||||
{
|
||||
if( ( my_resf & 0x10 ) != 0 )
|
||||
if( ( my_resf & 0x10 ) != 0 )
|
||||
{
|
||||
IRQ0_neg; // 一瞬上げて落とし直す。
|
||||
#ifdef _PMIC_TWL_
|
||||
// 暴走してしまうので再起動させる
|
||||
PM_reset_ast();
|
||||
|
@ -51,6 +51,12 @@ void main_loop( void )
|
||||
if( PM_chk_LDSW() != 0 )
|
||||
#endif
|
||||
{
|
||||
// 電源投入...の準備 //
|
||||
BT_DET_P = 1; // チャージに時間が掛かるので、先に上げておく
|
||||
BT_TEMP_P = 1;
|
||||
iic_mcu_start( );
|
||||
wait_ms( 100 );
|
||||
BT_init( ); // 実機やバッテリの判定、電池残量ICの設定
|
||||
system_status.pwr_state = ON_TRIG;
|
||||
}
|
||||
}
|
||||
|
@ -107,17 +107,14 @@ void tsk_sw( )
|
||||
case ( BT_CHARGE ):
|
||||
case ( OFF ):
|
||||
// 電源スイッチの監視 //
|
||||
count_sw_n( SW_POW_n, SW_pow_count, SW_pow_mask ); // ボタン押し時間のカウント
|
||||
if( SW_POW_n )
|
||||
if( ( SW_POW_n ) &&
|
||||
( SW_pow_count >= CLICK_THRESHOLD ) )
|
||||
{
|
||||
if( SW_pow_count == CLICK_THRESHOLD )
|
||||
{
|
||||
#ifdef _SW_HOME_ENABLE_
|
||||
set_irq( VREG_C_IRQ0, REG_BIT_SW_POW_CLICK );
|
||||
#else
|
||||
set_irq( VREG_C_IRQ0, REG_BIT_SW_HOME_CLICK );
|
||||
#endif
|
||||
}
|
||||
}
|
||||
else if( SW_pow_count == HOLD_THREASHOLD )
|
||||
{
|
||||
@ -140,6 +137,7 @@ void tsk_sw( )
|
||||
renge_task_interval_run_force = 1;
|
||||
}
|
||||
}
|
||||
count_sw_n( SW_POW_n, SW_pow_count, SW_pow_mask ); // ボタン押し時間のカウント
|
||||
|
||||
#ifdef _SW_HOME_ENABLE_
|
||||
// HOME スイッチ //
|
||||
|
@ -94,7 +94,7 @@ void tsk_sys( )
|
||||
|
||||
// 残量チェック
|
||||
BT_get_left(); // 先に、BT_init()が実行されている必要があります。(大丈夫)
|
||||
if( vreg_ctr[VREG_C_BT_REMAIN] < 5 )
|
||||
if( vreg_ctr[VREG_C_BT_REMAIN] < 1 )
|
||||
{
|
||||
renge_task_interval_run_force = 1;
|
||||
system_status.pwr_state = OFF_TRIG;
|
||||
@ -144,14 +144,6 @@ void tsk_sys( )
|
||||
#endif
|
||||
|
||||
IIC_ctr_Init( );
|
||||
{
|
||||
// WDTリセット時、I2Cの初期化まで割り込み保留
|
||||
// ほんとはここにべた書きしたくないが...
|
||||
if( ( vreg_ctr[ VREG_C_MCU_STATUS ] & REG_BIT_STATUS_WDT_RESET ) != 0 )
|
||||
{
|
||||
set_irq( VREG_C_IRQ0, REG_BIT_IRQ_WDT_RESET );
|
||||
}
|
||||
}
|
||||
IIC_twl_Init( );
|
||||
RTC_32k_on( );
|
||||
|
||||
@ -189,6 +181,13 @@ void tsk_sys( )
|
||||
|
||||
system_status.reboot = 0;
|
||||
system_status.pwr_state = ON;
|
||||
|
||||
// WDTリセット時、I2Cの初期化まで割り込み保留
|
||||
// ほんとはここにべた書きしたくないが...
|
||||
if( ( vreg_ctr[ VREG_C_MCU_STATUS ] & REG_BIT_STATUS_WDT_RESET ) != 0 )
|
||||
{
|
||||
set_irq( VREG_C_IRQ0, REG_BIT_IRQ_WDT_RESET );
|
||||
}
|
||||
break;
|
||||
|
||||
case ON: //---------------------------------------------
|
||||
|
@ -1,56 +1,4 @@
|
||||
C:\WINDOWS\system32\cmd.exe /c touch magic.c
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no loader.c
|
||||
loader.c(126) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
loader.c(78) : CC78K0R warning W0714: Too many register variables
|
||||
loader.c(100) : CC78K0R warning W0714: Too many register variables
|
||||
loader.c(101) : CC78K0R warning W0714: Too many register variables
|
||||
loader.c(119) : CC78K0R warning W0714: Too many register variables
|
||||
loader.c(120) : CC78K0R warning W0714: Too many register variables
|
||||
Compilation complete, 0 error(s) and 6 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\loader.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no pm.c
|
||||
batt_params.h(74) : CC78K0R warning W0851: Data aligned in 'struct tag'
|
||||
batt_params.h(82) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
batt_params.h(82) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
batt_params.h(87) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
batt_params.h(87) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
pm.c(63) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(102) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(84) : CC78K0R warning W0309: Unused 'temp'
|
||||
pm.c(186) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(194) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(481) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(484) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(608) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
pm.c(936) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
pm.c(1001) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
batt_params.h(82) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
batt_params.h(82) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
batt_params.h(87) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pm.c(138) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(140) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(190) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(425) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(426) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(488) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(693) : CC78K0R warning W0714: Too many register variables
|
||||
pm.c(27) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
pm.c(1003) : CC78K0R warning W0851: Data aligned in '@@CNST section'
|
||||
Compilation complete, 0 error(s) and 27 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\pm.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no i2c_ctr.c
|
||||
i2c_ctr.c(78) : CC78K0R warning W0309: Unused 'reg_adrs_internal'
|
||||
i2c_ctr.c(285) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
i2c_ctr.c(285) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\i2c_ctr.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no main.c
|
||||
Compilation complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\main.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no magic.c
|
||||
magic.c(13) : CC78K0R warning W0871: Data aligned after 'MGC_HEAD'in 'MGC_MIMI section'
|
||||
magic.c(16) : CC78K0R warning W0871: Data aligned after 'MGC_TAIL'in 'MGC_TAIL section'
|
||||
@ -58,283 +6,13 @@ magic.c(10) : CC78K0R warning W0871: Data aligned after 'MGC_LOAD'in 'MGC_LOAD s
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\magic.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no WDT.c
|
||||
Compilation complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\WDT.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no i2c_mcu.c
|
||||
i2c_mcu.c(194) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
i2c_mcu.c(237) : CC78K0R warning W0309: Unused 'temp'
|
||||
i2c_mcu.c(590) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\i2c_mcu.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no i2c_twl.c
|
||||
i2c_twl.c(125) : CC78K0R warning W0503: Possible use of 'vreg_adrs' before definition
|
||||
i2c_twl.c(92) : CC78K0R warning W0309: Unused 'pre_dat'
|
||||
i2c_twl.c(91) : CC78K0R warning W0714: Too many register variables
|
||||
i2c_twl.c(92) : CC78K0R warning W0714: Too many register variables
|
||||
i2c_twl.c(93) : CC78K0R warning W0714: Too many register variables
|
||||
i2c_twl.c(94) : CC78K0R warning W0714: Too many register variables
|
||||
i2c_twl.c(95) : CC78K0R warning W0714: Too many register variables
|
||||
i2c_twl.c(104) : CC78K0R warning W0714: Too many register variables
|
||||
Compilation complete, 0 error(s) and 8 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\i2c_twl.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no led.c
|
||||
led.c(89) : CC78K0R warning W0745: Expected function prototype
|
||||
led.c(149) : CC78K0R warning W0411: Illegal pointer combination
|
||||
led.c(156) : CC78K0R warning W0411: Illegal pointer combination
|
||||
led.c(302) : CC78K0R warning W0309: Unused 'temp'
|
||||
led.c(435) : CC78K0R warning W0309: Unused 'remain_wifi_tx'
|
||||
led.c(577) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
led.c(627) : CC78K0R warning W0309: Unused 'state_led_cam_twl'
|
||||
led.c(526) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 8 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\led.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no rtc.c
|
||||
rtc.c(180) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 1 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\rtc.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no vreg_ctr.c
|
||||
vreg_ctr.c(146) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_ctr.c(147) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_ctr.c(149) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_ctr.c(151) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_ctr.c(152) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_ctr.c(451) : CC78K0R warning W0714: Too many register variables
|
||||
Compilation complete, 0 error(s) and 6 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\vreg_ctr.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no vreg_twl.c
|
||||
vreg_twl.c(54) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
vreg_twl.c(58) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
Compilation complete, 0 error(s) and 2 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\vreg_twl.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no adc.c
|
||||
adc.c(93) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
adc.c(112) : CC78K0R warning W0745: Expected function prototype
|
||||
adc.c(110) : CC78K0R warning W0309: Unused 'temp'
|
||||
adc.c(163) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
adc.c(171) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
adc.c(172) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
adc.c(83) : CC78K0R warning W0309: Unused 'old_tune'
|
||||
adc.c(84) : CC78K0R warning W0309: Unused 'sndvol_codec'
|
||||
adc.c(85) : CC78K0R warning W0309: Unused 'bt_temp_old'
|
||||
adc.c(270) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
adc.c(305) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
adc.c(337) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 12 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\adc.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no accero.c
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(15) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(23) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(23) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(24) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(24) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(25) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(25) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(27) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(27) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(28) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(28) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(29) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(29) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(30) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(30) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(31) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(31) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(32) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(32) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(33) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(33) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(34) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(34) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(35) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(35) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(36) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(36) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(37) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(37) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(40) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(40) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(41) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(41) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(42) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(42) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(43) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(43) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(69) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(69) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(74) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(74) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
accero.c(274) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 60 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\accero.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no self_flash.c
|
||||
self_flash.c(200) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
self_flash.c(98) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(99) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(138) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(139) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(194) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(195) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(314) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(315) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(316) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(335) : CC78K0R warning W0714: Too many register variables
|
||||
self_flash.c(336) : CC78K0R warning W0714: Too many register variables
|
||||
Compilation complete, 0 error(s) and 12 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\self_flash.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no sw.c
|
||||
sw.c(100) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
sw.c(166) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
sw.c(166) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\sw.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no task_debug.c
|
||||
task_debug.c(15) : CC78K0R warning W0309: Unused 'temp'
|
||||
task_debug.c(16) : CC78K0R warning W0310: 'count' is assigned a value which is never used
|
||||
task_debug.c(17) : CC78K0R warning W0309: Unused 'task_interval'
|
||||
task_debug.c(74) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
task_debug.c(74) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
Compilation complete, 0 error(s) and 5 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\task_debug.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no task_misc.c
|
||||
Compilation complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\task_misc.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no task_sys.c
|
||||
task_sys.c(185) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
task_sys.c(426) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
task_sys.c(474) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
task_sys.c(177) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
task_sys.c(425) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
task_sys.c(473) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\task_sys.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no pedo_alg_thre_det2.c
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(15) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(23) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(23) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(24) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(24) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(25) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(25) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(26) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(27) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(27) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(28) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(28) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(29) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(29) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(30) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(30) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(31) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(31) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(32) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(32) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(33) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(33) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(34) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(34) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(35) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(35) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(36) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(36) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(37) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(37) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(38) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(39) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(40) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(40) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(41) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(41) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(42) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(42) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(43) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(43) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(44) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(69) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(69) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(70) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(74) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(74) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\..\inc78k0r\math.h(75) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
pedo_alg_thre_det2.c(60) : CC78K0R warning W0745: Expected function prototype
|
||||
pedo_alg_thre_det2.c(75) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pedo_alg_thre_det2.c(142) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pedo_alg_thre_det2.c(155) : CC78K0R warning W0401: Conversion may lose significant digits
|
||||
pedo_alg_thre_det2.c(50) : CC78K0R warning W0309: Unused 'peak_h'
|
||||
pedo_alg_thre_det2.c(54) : CC78K0R warning W0309: Unused 't_rise'
|
||||
pedo_alg_thre_det2.c(56) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(58) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(60) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(61) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(62) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(219) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(220) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(221) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(247) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(265) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(355) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(356) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(423) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(424) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(425) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(426) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(427) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(531) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(531) : CC78K0R warning W0714: Too many register variables
|
||||
pedo_alg_thre_det2.c(200) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
pedo_alg_thre_det2.c(415) : CC78K0R warning W0851: Data aligned in '@@CNST section'
|
||||
pedo_alg_thre_det2.c(549) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
Compilation complete, 0 error(s) and 87 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\pedo_alg_thre_det2.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\bin\cc78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -irenge -i"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\inc78k0r" -ms -qvjl2wt -sainter_asm -zpb -w2 -no task_status.c
|
||||
task_status.c(37) : CC78K0R warning W0760: Double and long double are treated as IEEE 754 single format
|
||||
task_status.c(90) : CC78K0R warning W0851: Data aligned in '@@DATA section'
|
||||
task_status.c(90) : CC78K0R warning W0851: Data aligned in '@@INIT section'
|
||||
Compilation complete, 0 error(s) and 3 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\ra78k0r.exe" -c9F0104 -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff inter_asm\task_status.asm
|
||||
Assembly complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\lk78k0r.exe" -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -obsr.lmf "..\..\..\Program Files\NEC Electronics Tools\CC78K0R\W2.10\lib78k0r\s0rm.rel" -go85h,0FC00h,1024 -gi0FFFFFFFFFFFFFFFFFFFFh -pbsr_k0r.map -nkd -gb7EFBFFh -b"C:\Program Files\NEC Electronics Tools\FSL78K0R_Type02ES\V1.20\lib78k0r\fsl.lib" -bcl0rdm.lib -bcl0rm.lib -bcl0rmf.lib -i"C:\Program Files\NEC Electronics Tools\CC78K0R\W2.10\lib78k0r" -dbsr_mcu.dr -s -w0 loader.rel pm.rel i2c_ctr.rel main.rel magic.rel WDT.rel i2c_mcu.rel i2c_twl.rel led.rel rtc.rel vreg_ctr.rel vreg_twl.rel adc.rel renge.rel accero.rel self_flash.rel sw.rel task_debug.rel task_misc.rel task_sys.rel pedo_alg_thre_det2.rel ini_VECT.rel task_status.rel
|
||||
Link complete, 0 error(s) and 0 warning(s) found.
|
||||
"C:\Program Files\NEC Electronics Tools\RA78K0R\W1.31\bin\oc78k0r.exe" -y"C:\Program Files\NEC Electronics Tools\DEV" -_msgoff -o.\bsr.hex -nu -ki bsr.lmf
|
||||
@ -345,4 +23,4 @@ intel-HEX to bsr bin converter
|
||||
file converted!
|
||||
|
||||
|
||||
Build Total error(s) : 0 Total warning(s) : 252
|
||||
Build Total error(s) : 0 Total warning(s) : 6
|
||||
|
Loading…
Reference in New Issue
Block a user