加密后提交测试
This commit is contained in:
parent
efbcce8886
commit
7d99880883
|
@ -2,7 +2,7 @@
|
||||||
* @Author: wujunchao wujunchao@wuxismart.com
|
* @Author: wujunchao wujunchao@wuxismart.com
|
||||||
* @Date: 2024-12-27 11:51:06
|
* @Date: 2024-12-27 11:51:06
|
||||||
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
||||||
* @LastEditTime: 2025-02-06 14:13:18
|
* @LastEditTime: 2025-02-07 09:30:00
|
||||||
* @FilePath: \signal_generator\App\APP_WU\Inc\apps_gather.h
|
* @FilePath: \signal_generator\App\APP_WU\Inc\apps_gather.h
|
||||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
*/
|
*/
|
||||||
|
@ -64,8 +64,6 @@ extern const lv_img_dsc_t * screen_main_animimg_7_imgs[11];
|
||||||
/**********test4**********/
|
/**********test4**********/
|
||||||
|
|
||||||
/**********test5**********/
|
/**********test5**********/
|
||||||
#define LV_LVGL_H_INCLUDE_SIMPLE 1
|
|
||||||
|
|
||||||
#define KEY_OUT 76
|
#define KEY_OUT 76
|
||||||
#define KEY_UP 84
|
#define KEY_UP 84
|
||||||
#define KEY_MENU 92
|
#define KEY_MENU 92
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: wujunchao wujunchao@wuxismart.com
|
* @Author: wujunchao wujunchao@wuxismart.com
|
||||||
* @Date: 2024-12-27 11:50:56
|
* @Date: 2024-12-27 11:50:56
|
||||||
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
||||||
* @LastEditTime: 2025-02-07 09:05:47
|
* @LastEditTime: 2025-02-07 09:27:19
|
||||||
* @FilePath: \signal_generator\App\APP_WU\Src\apps_gather.c
|
* @FilePath: \signal_generator\App\APP_WU\Src\apps_gather.c
|
||||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
*/
|
*/
|
||||||
|
@ -464,7 +464,7 @@ void key_functions_main(void) //按键功能
|
||||||
m5data.twk_flag = 1; //上、下、左、右 任意一个键按下后,闪烁开始
|
m5data.twk_flag = 1; //上、下、左、右 任意一个键按下后,闪烁开始
|
||||||
twk_cnt = 0; //每次按下后闪烁计数清零
|
twk_cnt = 0; //每次按下后闪烁计数清零
|
||||||
|
|
||||||
switch (m5data.io_cursor)
|
switch (m5data.io_cursor) //避免游标移动的瞬间数值处于闪烁熄灭的状态,移动游标前重新显示一次当前数值
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
{
|
{
|
||||||
|
@ -545,7 +545,7 @@ void key_functions_main(void) //按键功能
|
||||||
m5data.twk_flag = 1; // 上、下、左、右 任意一个键按下后,闪烁开始
|
m5data.twk_flag = 1; // 上、下、左、右 任意一个键按下后,闪烁开始
|
||||||
twk_cnt = 0; //每次按下后闪烁计数清零
|
twk_cnt = 0; //每次按下后闪烁计数清零
|
||||||
|
|
||||||
switch (m5data.io_cursor)
|
switch (m5data.io_cursor) //避免游标移动的瞬间数值处于闪烁熄灭的状态,移动游标前重新显示一次当前数值
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
{
|
{
|
||||||
|
@ -1107,7 +1107,7 @@ void key_functions_setting(void) //按键功能,详细设置菜单界面
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t twk_p = 0;
|
uint8_t twk_p = 0; //用于控制闪烁翻转
|
||||||
void num_twinkle(void) //数值闪烁
|
void num_twinkle(void) //数值闪烁
|
||||||
{
|
{
|
||||||
if(m5data.twk_flag == 0)
|
if(m5data.twk_flag == 0)
|
||||||
|
@ -1246,6 +1246,7 @@ void num_twinkle(void) //数值闪烁
|
||||||
if(twk_cnt > 10) // 10秒无动作(上、下、左、右无按下)后停止闪烁
|
if(twk_cnt > 10) // 10秒无动作(上、下、左、右无按下)后停止闪烁
|
||||||
{
|
{
|
||||||
twk_cnt = 0;
|
twk_cnt = 0;
|
||||||
|
twk_p = 0;
|
||||||
m5data.twk_flag = 0;
|
m5data.twk_flag = 0;
|
||||||
m5data.io_cursor_prv = m5data.io_cursor;
|
m5data.io_cursor_prv = m5data.io_cursor;
|
||||||
|
|
||||||
|
|
30905
MDK-ARM/JLinkLog.txt
30905
MDK-ARM/JLinkLog.txt
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -26,435 +26,12 @@ Project File Date: 02/05/2025
|
||||||
|
|
||||||
<h2>Output:</h2>
|
<h2>Output:</h2>
|
||||||
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\Softwares\Keil_v5\ARM\ARMCC\Bin'
|
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\Softwares\Keil_v5\ARM\ARMCC\Bin'
|
||||||
Rebuild target 'signal_generator'
|
Build target 'signal_generator'
|
||||||
assembling startup_stm32f407xx.s...
|
|
||||||
compiling stm32f4xx_hal_timebase_tim.c...
|
|
||||||
compiling dac.c...
|
|
||||||
compiling stm32f4xx_it.c...
|
|
||||||
compiling JLX240-00301-BN.c...
|
|
||||||
compiling tim.c...
|
|
||||||
compiling adc.c...
|
|
||||||
compiling stm32f4xx_hal_msp.c...
|
|
||||||
compiling i2c.c...
|
|
||||||
compiling dma.c...
|
|
||||||
compiling hart.c...
|
|
||||||
compiling usart.c...
|
|
||||||
compiling spi.c...
|
|
||||||
compiling utils.c...
|
|
||||||
compiling gpio.c...
|
|
||||||
compiling stm32f4xx_ll_adc.c...
|
|
||||||
compiling main.c...
|
|
||||||
compiling freertos.c...
|
|
||||||
compiling rn7302.c...
|
|
||||||
compiling stm32f4xx_hal_adc_ex.c...
|
|
||||||
compiling SIG24130.c...
|
|
||||||
compiling ble.c...
|
|
||||||
compiling stm32f4xx_hal_rcc_ex.c...
|
|
||||||
compiling tm1650.c...
|
|
||||||
compiling dac8552.c...
|
|
||||||
compiling dac7811.c...
|
|
||||||
compiling stm32f4xx_hal_rcc.c...
|
|
||||||
compiling modbus.c...
|
|
||||||
compiling stm32f4xx_hal_adc.c...
|
|
||||||
compiling stm32f4xx_hal_flash.c...
|
|
||||||
compiling ads1220.c...
|
|
||||||
compiling mux_signal.c...
|
|
||||||
compiling stm32f4xx_hal_flash_ex.c...
|
|
||||||
compiling stm32f4xx_hal_dac.c...
|
|
||||||
compiling stm32f4xx_hal_pwr_ex.c...
|
|
||||||
compiling stm32f4xx_hal_flash_ramfunc.c...
|
|
||||||
compiling stm32f4xx_hal.c...
|
|
||||||
compiling stm32f4xx_hal_cortex.c...
|
|
||||||
compiling stm32f4xx_hal_gpio.c...
|
|
||||||
compiling croutine.c...
|
|
||||||
compiling stm32f4xx_hal_dac_ex.c...
|
|
||||||
compiling stm32f4xx_hal_dma.c...
|
|
||||||
compiling stm32f4xx_hal_exti.c...
|
|
||||||
compiling event_groups.c...
|
|
||||||
compiling stm32f4xx_hal_dma_ex.c...
|
|
||||||
compiling stm32f4xx_hal_pwr.c...
|
|
||||||
compiling list.c...
|
|
||||||
compiling stream_buffer.c...
|
|
||||||
compiling queue.c...
|
|
||||||
compiling timers.c...
|
|
||||||
compiling stm32f4xx_hal_i2c_ex.c...
|
|
||||||
compiling heap_4.c...
|
|
||||||
compiling tasks.c...
|
|
||||||
compiling port.c...
|
|
||||||
compiling custom.c...
|
|
||||||
compiling cmsis_os.c...
|
|
||||||
compiling stm32f4xx_hal_spi.c...
|
|
||||||
compiling events_init.c...
|
|
||||||
compiling gui_guider.c...
|
|
||||||
compiling setup_scr_screen_init.c...
|
|
||||||
compiling setup_scr_screen_setting.c...
|
|
||||||
compiling setup_scr_screen_main.c...
|
|
||||||
compiling widgets_init.c...
|
|
||||||
compiling lv_font_montserratMedium_12.c...
|
|
||||||
compiling lv_font_montserratMedium_16.c...
|
|
||||||
compiling lv_font_montserratMedium_20.c...
|
|
||||||
compiling lv_font_SourceHanSerifSC_Regular_12.c...
|
|
||||||
compiling lv_font_montserratMedium_25.c...
|
|
||||||
compiling lv_font_SourceHanSerifSC_Regular_20.c...
|
|
||||||
compiling lv_font_SourceHanSerifSC_Regular_15.c...
|
|
||||||
compiling _W_MOK_dot_alpha_12x35.c...
|
|
||||||
compiling screen_main_animimg_1bt0.c...
|
|
||||||
compiling screen_main_animimg_1bt20.c...
|
|
||||||
compiling stm32f4xx_hal_i2c.c...
|
|
||||||
compiling screen_main_animimg_1bt40.c...
|
|
||||||
compiling screen_main_animimg_1bt60.c...
|
|
||||||
compiling screen_main_animimg_1bt80.c...
|
|
||||||
compiling screen_main_animimg_1bt100.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_0.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_2.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_3.c...
|
|
||||||
compiling _logo_blue_bottom_alpha_320x240.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_6.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_8.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_2W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_0.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_2.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_3.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_6.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_8.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_3W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_0.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_2.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_3.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_6.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_8.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_4W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_0.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_2.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_3.c...
|
|
||||||
compiling stm32f4xx_hal_tim.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_6.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_8.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_0.c...
|
|
||||||
compiling screen_main_animimg_5W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_2.c...
|
|
||||||
compiling system_stm32f4xx.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_3.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_6.c...
|
|
||||||
compiling stm32f4xx_hal_tim_ex.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_8.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_6W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_0.c...
|
|
||||||
compiling stm32f4xx_hal_uart.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_1.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_2.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_3.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_4.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_5.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_7.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_6.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_9.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_8.c...
|
|
||||||
compiling lv_disp.c...
|
|
||||||
compiling lv_port_indev.c...
|
|
||||||
compiling screen_main_animimg_7W_MOK_null.c...
|
|
||||||
compiling screen_main_animimg_8W_MOK_minus.c...
|
|
||||||
compiling lv_event.c...
|
|
||||||
..\LVGL\src\core\lv_event.c(117): warning: #188-D: enumerated type mixed with another type
|
|
||||||
return e->code & ~LV_EVENT_PREPROCESS;
|
|
||||||
..\LVGL\src\core\lv_event.c: 1 warning, 0 errors
|
|
||||||
compiling lv_port_disp.c...
|
|
||||||
..\LVGL\examples\porting\lv_port_disp.c(19): warning: #1215-D: #warning directive: Please define or replace the macro MY_DISP_HOR_RES with the actual screen width, default value 320 is used for now.
|
|
||||||
#warning Please define or replace the macro MY_DISP_HOR_RES with the actual screen width, default value 320 is used for now.
|
|
||||||
..\LVGL\examples\porting\lv_port_disp.c(24): warning: #1215-D: #warning directive: Please define or replace the macro MY_DISP_HOR_RES with the actual screen height, default value 240 is used for now.
|
|
||||||
#warning Please define or replace the macro MY_DISP_HOR_RES with the actual screen height, default value 240 is used for now.
|
|
||||||
..\LVGL\examples\porting\lv_port_disp.c: 2 warnings, 0 errors
|
|
||||||
compiling screen_main_animimg_8W_MOK_plus.c...
|
|
||||||
compiling lv_group.c...
|
|
||||||
compiling lv_obj_class.c...
|
|
||||||
compiling lv_indev_scroll.c...
|
|
||||||
compiling lv_obj_draw.c...
|
|
||||||
..\LVGL\src\core\lv_obj_draw.c(392): warning: #188-D: enumerated type mixed with another type
|
|
||||||
if(obj->spec_attr) return obj->spec_attr->layer_type;
|
|
||||||
..\LVGL\src\core\lv_obj_draw.c: 1 warning, 0 errors
|
|
||||||
compiling lv_indev.c...
|
|
||||||
compiling lv_obj.c...
|
|
||||||
compiling lv_obj_tree.c...
|
|
||||||
compiling lv_obj_style_gen.c...
|
|
||||||
compiling lv_obj_style.c...
|
|
||||||
compiling lv_theme.c...
|
|
||||||
compiling lv_obj_scroll.c...
|
|
||||||
compiling lv_draw.c...
|
|
||||||
compiling lv_draw_arc.c...
|
|
||||||
compiling lv_draw_layer.c...
|
|
||||||
compiling lv_obj_pos.c...
|
|
||||||
compiling lv_draw_line.c...
|
|
||||||
compiling lv_draw_rect.c...
|
|
||||||
compiling lv_draw_img.c...
|
|
||||||
compiling lv_draw_label.c...
|
|
||||||
compiling lv_refr.c...
|
|
||||||
compiling lv_draw_triangle.c...
|
|
||||||
compiling lv_draw_transform.c...
|
|
||||||
compiling lv_img_cache.c...
|
|
||||||
compiling lv_draw_pxp.c...
|
|
||||||
compiling lv_gpu_arm2d.c...
|
|
||||||
compiling lv_img_buf.c...
|
|
||||||
compiling lv_draw_mask.c...
|
|
||||||
compiling lv_draw_pxp_blend.c...
|
|
||||||
compiling lv_gpu_nxp_pxp.c...
|
|
||||||
compiling lv_img_decoder.c...
|
|
||||||
compiling lv_gpu_nxp_pxp_osa.c...
|
|
||||||
compiling lv_draw_vglite.c...
|
|
||||||
compiling lv_draw_vglite_arc.c...
|
|
||||||
compiling lv_draw_vglite_blend.c...
|
|
||||||
compiling lv_draw_vglite_line.c...
|
|
||||||
compiling lv_draw_vglite_rect.c...
|
|
||||||
compiling lv_vglite_buf.c...
|
|
||||||
compiling lv_vglite_utils.c...
|
|
||||||
compiling lv_draw_sdl_arc.c...
|
|
||||||
compiling lv_gpu_d2_draw_label.c...
|
|
||||||
compiling lv_gpu_d2_ra6m3.c...
|
|
||||||
compiling lv_draw_sdl.c...
|
|
||||||
compiling lv_draw_sdl_bg.c...
|
|
||||||
compiling lv_draw_sdl_composite.c...
|
|
||||||
compiling lv_draw_sdl_img.c...
|
|
||||||
compiling lv_draw_sdl_label.c...
|
|
||||||
compiling lv_draw_sdl_layer.c...
|
|
||||||
compiling lv_draw_sdl_line.c...
|
|
||||||
compiling lv_draw_sdl_polygon.c...
|
|
||||||
compiling lv_draw_sdl_mask.c...
|
|
||||||
compiling lv_draw_sdl_rect.c...
|
|
||||||
compiling lv_draw_sdl_stack_blur.c...
|
|
||||||
compiling lv_draw_sdl_texture_cache.c...
|
|
||||||
compiling lv_draw_sdl_utils.c...
|
|
||||||
compiling lv_draw_sw_dither.c...
|
|
||||||
compiling lv_gpu_stm32_dma2d.c...
|
|
||||||
compiling lv_draw_sw.c...
|
|
||||||
compiling lv_draw_sw_gradient.c...
|
|
||||||
compiling lv_draw_sw_arc.c...
|
|
||||||
compiling lv_draw_sw_img.c...
|
|
||||||
compiling lv_draw_sw_layer.c...
|
|
||||||
compiling lv_draw_sw_letter.c...
|
|
||||||
compiling lv_draw_sw_polygon.c...
|
|
||||||
compiling lv_gpu_swm341_dma2d.c...
|
|
||||||
compiling lv_draw_sw_line.c...
|
|
||||||
compiling lv_draw_sw_blend.c...
|
|
||||||
compiling lv_extra.c...
|
|
||||||
compiling lv_bmp.c...
|
|
||||||
compiling lv_draw_sw_transform.c...
|
|
||||||
compiling lv_ffmpeg.c...
|
|
||||||
compiling lv_flex.c...
|
|
||||||
compiling gifdec.c...
|
|
||||||
compiling lv_grid.c...
|
|
||||||
..\LVGL\src\extra\layouts\grid\lv_grid.c(583): warning: #188-D: enumerated type mixed with another type
|
|
||||||
lv_grid_align_t col_align = get_cell_col_align(item);
|
|
||||||
..\LVGL\src\extra\layouts\grid\lv_grid.c(584): warning: #188-D: enumerated type mixed with another type
|
|
||||||
lv_grid_align_t row_align = get_cell_row_align(item);
|
|
||||||
..\LVGL\src\extra\layouts\grid\lv_grid.c: 2 warnings, 0 errors
|
|
||||||
compiling lv_fs_fatfs.c...
|
|
||||||
compiling lv_freetype.c...
|
|
||||||
compiling lv_fs_littlefs.c...
|
|
||||||
compiling lv_draw_sw_rect.c...
|
|
||||||
..\LVGL\src\draw\sw\lv_draw_sw_rect.c(234): warning: #546-D: transfer of control bypasses initialization of:
|
|
||||||
variable "mask_any_center" (declared at line 280)
|
|
||||||
goto bg_clean_up;
|
|
||||||
^
|
|
||||||
..\LVGL\src\draw\sw\lv_draw_sw_rect.c: 1 warning, 0 errors
|
|
||||||
compiling lv_fs_posix.c...
|
|
||||||
compiling lv_fs_stdio.c...
|
|
||||||
compiling lv_fs_win32.c...
|
|
||||||
compiling lv_gif.c...
|
|
||||||
compiling lodepng.c...
|
|
||||||
compiling lv_qrcode.c...
|
|
||||||
compiling lv_png.c...
|
|
||||||
compiling tjpgd.c...
|
|
||||||
compiling lv_fragment.c...
|
|
||||||
compiling lv_fragment_manager.c...
|
|
||||||
compiling lv_rlottie.c...
|
|
||||||
compiling lv_sjpg.c...
|
|
||||||
compiling lv_tiny_ttf.c...
|
|
||||||
compiling lv_gridnav.c...
|
|
||||||
compiling qrcodegen.c...
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c(278): warning: #188-D: enumerated type mixed with another type
|
|
||||||
applyMask(tempBuffer, qrcode, mask);
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c(279): warning: #188-D: enumerated type mixed with another type
|
|
||||||
drawFormatBits(ecl, mask, qrcode);
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c(620): warning: #111-D: statement is unreachable
|
|
||||||
default: LV_ASSERT(false); return;
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c(853): warning: #111-D: statement is unreachable
|
|
||||||
return -1;
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c(1008): warning: #111-D: statement is unreachable
|
|
||||||
default: LV_ASSERT(false); return -1; // Dummy value
|
|
||||||
..\LVGL\src\extra\libs\qrcode\qrcodegen.c: 5 warnings, 0 errors
|
|
||||||
compiling lv_snapshot.c...
|
|
||||||
compiling lv_msg.c...
|
|
||||||
compiling lv_ime_pinyin.c...
|
|
||||||
compiling lv_imgfont.c...
|
|
||||||
compiling lv_monkey.c...
|
|
||||||
compiling lv_theme_basic.c...
|
|
||||||
compiling lv_calendar_header_arrow.c...
|
|
||||||
compiling lv_calendar_header_dropdown.c...
|
|
||||||
compiling lv_animimg.c...
|
|
||||||
compiling lv_theme_mono.c...
|
|
||||||
compiling lv_calendar.c...
|
|
||||||
compiling lv_list.c...
|
|
||||||
compiling lv_keyboard.c...
|
|
||||||
compiling lv_colorwheel.c...
|
|
||||||
compiling lv_imgbtn.c...
|
|
||||||
compiling lv_menu.c...
|
|
||||||
compiling lv_led.c...
|
|
||||||
compiling lv_theme_default.c...
|
|
||||||
..\LVGL\src\extra\themes\default\lv_theme_default.c(211): warning: #188-D: enumerated type mixed with another type
|
|
||||||
..\LVGL\src\extra\themes\default\lv_theme_default.c: 1 warning, 0 errors
|
|
||||||
compiling lv_msgbox.c...
|
|
||||||
compiling lv_font.c...
|
|
||||||
compiling lv_spinner.c...
|
|
||||||
compiling lv_tileview.c...
|
|
||||||
compiling lv_spinbox.c...
|
|
||||||
compiling lv_meter.c...
|
|
||||||
compiling lv_tabview.c...
|
|
||||||
compiling lv_win.c...
|
|
||||||
compiling lv_font_fmt_txt.c...
|
|
||||||
..\LVGL\src\font\lv_font_fmt_txt.c(137): warning: #111-D: statement is unreachable
|
|
||||||
return NULL;
|
|
||||||
..\LVGL\src\font\lv_font_fmt_txt.c: 1 warning, 0 errors
|
|
||||||
compiling lv_chart.c...
|
|
||||||
compiling lv_span.c...
|
|
||||||
..\LVGL\src\extra\widgets\span\lv_span.c(900): warning: #546-D: transfer of control bypasses initialization of:
|
|
||||||
variable "align" (declared at line 904)
|
|
||||||
goto Next_line_init;
|
|
||||||
^
|
|
||||||
..\LVGL\src\extra\widgets\span\lv_span.c: 1 warning, 0 errors
|
|
||||||
compiling lv_font_dejavu_16_persian_hebrew.c...
|
|
||||||
compiling lv_font_montserrat_8.c...
|
|
||||||
compiling lv_font_montserrat_10.c...
|
|
||||||
compiling lv_font_montserrat_12.c...
|
|
||||||
compiling lv_font_montserrat_12_subpx.c...
|
|
||||||
compiling lv_font_loader.c...
|
|
||||||
compiling lv_font_montserrat_16.c...
|
|
||||||
compiling lv_font_montserrat_14.c...
|
|
||||||
compiling lv_font_montserrat_18.c...
|
|
||||||
compiling lv_font_montserrat_20.c...
|
|
||||||
compiling lv_font_montserrat_22.c...
|
|
||||||
compiling lv_font_montserrat_24.c...
|
|
||||||
compiling lv_font_montserrat_26.c...
|
|
||||||
compiling lv_font_montserrat_28.c...
|
|
||||||
compiling lv_font_montserrat_28_compressed.c...
|
|
||||||
compiling lv_font_montserrat_30.c...
|
|
||||||
compiling lv_font_montserrat_32.c...
|
|
||||||
compiling lv_font_montserrat_34.c...
|
|
||||||
compiling lv_font_montserrat_36.c...
|
|
||||||
compiling lv_font_montserrat_40.c...
|
|
||||||
compiling lv_font_montserrat_38.c...
|
|
||||||
compiling lv_hal_tick.c...
|
|
||||||
compiling lv_font_montserrat_44.c...
|
|
||||||
compiling lv_font_montserrat_42.c...
|
|
||||||
compiling lv_font_montserrat_48.c...
|
|
||||||
compiling lv_font_montserrat_46.c...
|
|
||||||
compiling lv_font_unscii_8.c...
|
|
||||||
compiling lv_font_simsun_16_cjk.c...
|
|
||||||
compiling lv_hal_indev.c...
|
|
||||||
compiling lv_font_unscii_16.c...
|
|
||||||
compiling lv_anim_timeline.c...
|
|
||||||
compiling lv_anim.c...
|
|
||||||
compiling lv_async.c...
|
|
||||||
compiling lv_hal_disp.c...
|
|
||||||
..\LVGL\src\hal\lv_hal_disp.c(582): warning: #188-D: enumerated type mixed with another type
|
|
||||||
return disp->driver->rotated;
|
|
||||||
..\LVGL\src\hal\lv_hal_disp.c: 1 warning, 0 errors
|
|
||||||
compiling lv_bidi.c...
|
|
||||||
compiling lv_area.c...
|
|
||||||
compiling lv_log.c...
|
|
||||||
compiling lv_color.c...
|
|
||||||
compiling lv_gc.c...
|
|
||||||
compiling lv_ll.c...
|
|
||||||
compiling lv_math.c...
|
|
||||||
compiling lv_fs.c...
|
|
||||||
compiling lv_lru.c...
|
|
||||||
..\LVGL\src\misc\lv_lru.c(238): warning: #68-D: integer conversion resulted in a change of sign
|
|
||||||
uint32_t i = 0, min_index = -1;
|
|
||||||
..\LVGL\src\misc\lv_lru.c(239): warning: #68-D: integer conversion resulted in a change of sign
|
|
||||||
uint64_t min_access_count = -1;
|
|
||||||
..\LVGL\src\misc\lv_lru.c: 2 warnings, 0 errors
|
|
||||||
compiling lv_templ.c...
|
|
||||||
compiling lv_mem.c...
|
|
||||||
..\LVGL\src\misc\lv_mem.c(324): warning: #111-D: statement is unreachable
|
|
||||||
return NULL;
|
|
||||||
..\LVGL\src\misc\lv_mem.c: 1 warning, 0 errors
|
|
||||||
compiling lv_printf.c...
|
|
||||||
compiling lv_style.c...
|
|
||||||
..\LVGL\src\misc\lv_style.c(214): warning: #188-D: enumerated type mixed with another type
|
|
||||||
return last_custom_prop_id;
|
|
||||||
..\LVGL\src\misc\lv_style.c(219): warning: #188-D: enumerated type mixed with another type
|
|
||||||
return last_custom_prop_id - _LV_STYLE_LAST_BUILT_IN_PROP;
|
|
||||||
..\LVGL\src\misc\lv_style.c(290): warning: #188-D: enumerated type mixed with another type
|
|
||||||
lv_style_set_prop_internal(style, prop | meta, null_style_value, lv_style_set_prop_meta_helper);
|
|
||||||
..\LVGL\src\misc\lv_style.c: 3 warnings, 0 errors
|
|
||||||
compiling lv_timer.c...
|
|
||||||
compiling lv_style_gen.c...
|
|
||||||
compiling lv_utils.c...
|
|
||||||
compiling lv_txt_ap.c...
|
|
||||||
compiling lv_txt.c...
|
|
||||||
compiling lv_tlsf.c...
|
|
||||||
..\LVGL\src\misc\lv_tlsf.c(897): warning: #68-D: integer conversion resulted in a change of sign
|
|
||||||
offset_to_block(pool, -(int)block_header_overhead);
|
|
||||||
..\LVGL\src\misc\lv_tlsf.c(999): warning: #68-D: integer conversion resulted in a change of sign
|
|
||||||
block = offset_to_block(mem, -(tlsfptr_t)block_header_overhead);
|
|
||||||
..\LVGL\src\misc\lv_tlsf.c(1017): warning: #68-D: integer conversion resulted in a change of sign
|
|
||||||
block_header_t * block = offset_to_block(pool, -(int)block_header_overhead);
|
|
||||||
..\LVGL\src\misc\lv_tlsf.c: 3 warnings, 0 errors
|
|
||||||
compiling lv_btn.c...
|
|
||||||
compiling lv_bar.c...
|
|
||||||
compiling lv_checkbox.c...
|
|
||||||
compiling lv_objx_templ.c...
|
|
||||||
compiling lv_arc.c...
|
|
||||||
compiling lv_canvas.c...
|
|
||||||
compiling lv_line.c...
|
|
||||||
compiling lv_btnmatrix.c...
|
|
||||||
compiling lv_img.c...
|
|
||||||
compiling lv_switch.c...
|
|
||||||
compiling lv_dropdown.c...
|
|
||||||
compiling lv_slider.c...
|
|
||||||
compiling lv_roller.c...
|
|
||||||
compiling lv_label.c...
|
|
||||||
compiling lv_demo_benchmark.c...
|
|
||||||
compiling img_benchmark_cogwheel_alpha16.c...
|
|
||||||
compiling img_benchmark_cogwheel_argb.c...
|
|
||||||
compiling lv_table.c...
|
|
||||||
compiling lv_textarea.c...
|
|
||||||
compiling img_benchmark_cogwheel_indexed16.c...
|
|
||||||
compiling img_benchmark_cogwheel_chroma_keyed.c...
|
|
||||||
compiling img_benchmark_cogwheel_rgb.c...
|
|
||||||
compiling lv_font_bechmark_montserrat_12_compr_az.c.c...
|
|
||||||
compiling lv_font_bechmark_montserrat_16_compr_az.c.c...
|
|
||||||
compiling img_benchmark_cogwheel_rgb565a8.c...
|
|
||||||
compiling lv_font_bechmark_montserrat_28_compr_az.c.c...
|
|
||||||
compiling timer.c...
|
|
||||||
compiling apps_gather.c...
|
compiling apps_gather.c...
|
||||||
linking...
|
linking...
|
||||||
Program Size: Code=205264 RO-data=513136 RW-data=1304 ZI-data=97960
|
Program Size: Code=205264 RO-data=513136 RW-data=1304 ZI-data=97960
|
||||||
FromELF: creating hex file...
|
FromELF: creating hex file...
|
||||||
"signal_generator\signal_generator.axf" - 0 Error(s), 25 Warning(s).
|
"signal_generator\signal_generator.axf" - 0 Error(s), 0 Warning(s).
|
||||||
|
|
||||||
<h2>Software Packages used:</h2>
|
<h2>Software Packages used:</h2>
|
||||||
|
|
||||||
|
@ -478,7 +55,7 @@ Package Vendor: Keil
|
||||||
|
|
||||||
* Component: ARM::CMSIS:CORE@5.6.0
|
* Component: ARM::CMSIS:CORE@5.6.0
|
||||||
Include file: CMSIS/Core/Include/tz_context.h
|
Include file: CMSIS/Core/Include/tz_context.h
|
||||||
Build Time Elapsed: 00:00:25
|
Build Time Elapsed: 00:00:06
|
||||||
</pre>
|
</pre>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -11004,16 +11004,16 @@
|
||||||
:10AF8000B3FFE77014E06AB10E6020703648E178D4
|
:10AF8000B3FFE77014E06AB10E6020703648E178D4
|
||||||
:10AF9000806E41B195F82220364951F82210F2F71F
|
:10AF9000806E41B195F82220364951F82210F2F71F
|
||||||
:10AFA000A3FFE67004E03349896AF2F79DFFE7707A
|
:10AFA000A3FFE67004E03349896AF2F79DFFE7707A
|
||||||
:10AFB00020780A2898BFBDE8F09F267085F82860A1
|
:10AFB00020780A2898BFBDE8F09F2670E67085F8D3
|
||||||
:10AFC000E87E2877062828BFBDE8F09FDFE800F07C
|
:10AFC0002860E87E2877062828BFBDE8F09FDFE8E4
|
||||||
:10AFD000030C151E2934687F59F82010D8F850004A
|
:10AFD00000F0030C151E2934687F59F82010D8F8AA
|
||||||
:10AFE000BDE8F05FF2F780BFA87F5AF82010D8F8CC
|
:10AFE0005000BDE8F05FF2F77FBFA87F5AF820104D
|
||||||
:10AFF0005800BDE8F05FF2F777BFE87F5BF82010FC
|
:10AFF000D8F85800BDE8F05FF2F776BFE87F5BF85D
|
||||||
:10B00000D8F85C00BDE8F05FF2F76EBF95F820104D
|
:10B000002010D8F85C00BDE8F05FF2F76DBF95F84E
|
||||||
:10B01000164850F82110D8F86000BDE8F05FF2F74C
|
:10B010002010164850F82110D8F86000BDE8F05F05
|
||||||
:10B0200063BF95F82110124850F82110D8F8640039
|
:10B02000F2F762BF95F82110114850F82110D8F8B6
|
||||||
:10B03000BDE8F05FF2F758BF95F822100D4850F8C0
|
:10B030006400BDE8F05FF2F757BF95F822100D48A5
|
||||||
:10B040002110D8F86800BDE8F05FF2F74DBF0000AE
|
:10B0400050F82110D8F86800BDE8F05FF2F74CBF67
|
||||||
:10B0500084610120ACC1012090C10120F0000020DA
|
:10B0500084610120ACC1012090C10120F0000020DA
|
||||||
:10B060001C0100204801002064030020740100201E
|
:10B060001C0100204801002064030020740100201E
|
||||||
:10B07000A001002094C001202DE9F04104460022E7
|
:10B07000A001002094C001202DE9F04104460022E7
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<title>Static Call Graph - [signal_generator\signal_generator.axf]</title></head>
|
<title>Static Call Graph - [signal_generator\signal_generator.axf]</title></head>
|
||||||
<body><HR>
|
<body><HR>
|
||||||
<H1>Static Call Graph for image signal_generator\signal_generator.axf</H1><HR>
|
<H1>Static Call Graph for image signal_generator\signal_generator.axf</H1><HR>
|
||||||
<BR><P>#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Fri Feb 07 09:12:24 2025
|
<BR><P>#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Fri Feb 07 09:27:33 2025
|
||||||
<BR><P>
|
<BR><P>
|
||||||
<H3>Maximum Stack Usage = 1072 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
<H3>Maximum Stack Usage = 1072 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||||
Call chain for Maximum Stack Depth:</H3>
|
Call chain for Maximum Stack Depth:</H3>
|
||||||
|
@ -9185,7 +9185,7 @@ Global Symbols
|
||||||
<BR>[Called By]<UL><LI><a href="#[d8]">>></a> start_mux_analog
|
<BR>[Called By]<UL><LI><a href="#[d8]">>></a> start_mux_analog
|
||||||
</UL>
|
</UL>
|
||||||
|
|
||||||
<P><STRONG><a name="[45f]"></a>num_twinkle</STRONG> (Thumb, 482 bytes, Stack size 40 bytes, apps_gather.o(i.num_twinkle))
|
<P><STRONG><a name="[45f]"></a>num_twinkle</STRONG> (Thumb, 484 bytes, Stack size 40 bytes, apps_gather.o(i.num_twinkle))
|
||||||
<BR><BR>[Stack]<UL><LI>Max Depth = 348<LI>Call Chain = num_twinkle ⇒ lv_img_set_src ⇒ lv_obj_refresh_ext_draw_size ⇒ lv_obj_invalidate ⇒ lv_obj_area_is_visible ⇒ lv_obj_get_transformed_area ⇒ lv_obj_transform_point ⇒ lv_obj_transform_point (Cycle)
|
<BR><BR>[Stack]<UL><LI>Max Depth = 348<LI>Call Chain = num_twinkle ⇒ lv_img_set_src ⇒ lv_obj_refresh_ext_draw_size ⇒ lv_obj_invalidate ⇒ lv_obj_area_is_visible ⇒ lv_obj_get_transformed_area ⇒ lv_obj_transform_point ⇒ lv_obj_transform_point (Cycle)
|
||||||
</UL>
|
</UL>
|
||||||
<BR>[Calls]<UL><LI><a href="#[2cc]">>></a> lv_img_set_src
|
<BR>[Calls]<UL><LI><a href="#[2cc]">>></a> lv_img_set_src
|
||||||
|
|
|
@ -12068,7 +12068,7 @@ Image Symbol Table
|
||||||
menu_data_init 0x0802a6c5 Thumb Code 126 apps_gather.o(i.menu_data_init)
|
menu_data_init 0x0802a6c5 Thumb Code 126 apps_gather.o(i.menu_data_init)
|
||||||
menu_test5 0x0802a751 Thumb Code 126 apps_gather.o(i.menu_test5)
|
menu_test5 0x0802a751 Thumb Code 126 apps_gather.o(i.menu_test5)
|
||||||
mux_signal_switch 0x0802a8ad Thumb Code 1108 mux_signal.o(i.mux_signal_switch)
|
mux_signal_switch 0x0802a8ad Thumb Code 1108 mux_signal.o(i.mux_signal_switch)
|
||||||
num_twinkle 0x0802ae6d Thumb Code 482 apps_gather.o(i.num_twinkle)
|
num_twinkle 0x0802ae6d Thumb Code 484 apps_gather.o(i.num_twinkle)
|
||||||
osDelay 0x0802b1c9 Thumb Code 16 cmsis_os.o(i.osDelay)
|
osDelay 0x0802b1c9 Thumb Code 16 cmsis_os.o(i.osDelay)
|
||||||
osKernelStart 0x0802b1d9 Thumb Code 10 cmsis_os.o(i.osKernelStart)
|
osKernelStart 0x0802b1d9 Thumb Code 10 cmsis_os.o(i.osKernelStart)
|
||||||
osMessageCreate 0x0802b1e3 Thumb Code 46 cmsis_os.o(i.osMessageCreate)
|
osMessageCreate 0x0802b1e3 Thumb Code 46 cmsis_os.o(i.osMessageCreate)
|
||||||
|
@ -14239,7 +14239,7 @@ Image component sizes
|
||||||
0 0 1272 0 0 812 _w_mok_dot_alpha_12x35.o
|
0 0 1272 0 0 812 _w_mok_dot_alpha_12x35.o
|
||||||
412 50 0 6 168 3060 adc.o
|
412 50 0 6 168 3060 adc.o
|
||||||
620 46 0 9 0 4485 ads1220.o
|
620 46 0 9 0 4485 ads1220.o
|
||||||
3740 392 0 4 92 10811 apps_gather.o
|
3740 390 0 4 92 10815 apps_gather.o
|
||||||
4 0 0 0 0 843 ble.o
|
4 0 0 0 0 843 ble.o
|
||||||
372 10 0 0 0 32314 cmsis_os.o
|
372 10 0 0 0 32314 cmsis_os.o
|
||||||
320 44 0 0 20 2593 dac.o
|
320 44 0 0 20 2593 dac.o
|
||||||
|
@ -14471,7 +14471,7 @@ Image component sizes
|
||||||
0 0 0 296 0 1342 widgets_init.o
|
0 0 0 296 0 1342 widgets_init.o
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
200884 5182 513136 1300 97960 5244559 Object Totals
|
200884 5180 513136 1300 97960 5244563 Object Totals
|
||||||
0 0 64 0 0 0 (incl. Generated)
|
0 0 64 0 0 0 (incl. Generated)
|
||||||
208 4 180 13 0 0 (incl. Padding)
|
208 4 180 13 0 0 (incl. Padding)
|
||||||
|
|
||||||
|
@ -14537,9 +14537,9 @@ Image component sizes
|
||||||
|
|
||||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||||
|
|
||||||
205264 5296 513136 1304 97960 5138383 Grand Totals
|
205264 5294 513136 1304 97960 5138387 Grand Totals
|
||||||
205264 5296 513136 540 97960 5138383 ELF Image Totals (compressed)
|
205264 5294 513136 540 97960 5138387 ELF Image Totals (compressed)
|
||||||
205264 5296 513136 540 0 0 ROM Totals
|
205264 5294 513136 540 0 0 ROM Totals
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
|
|
||||||
|
|
|
@ -28915,7 +28915,7 @@ I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/colorwheel/lv_color
|
||||||
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/led/lv_led.h)(0x676E142C)
|
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/led/lv_led.h)(0x676E142C)
|
||||||
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/imgbtn/lv_imgbtn.h)(0x676E142C)
|
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/imgbtn/lv_imgbtn.h)(0x676E142C)
|
||||||
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/span/lv_span.h)(0x676E142C)
|
I (..\LVGL\demos\benchmark\assets\../../../src/extra/widgets/span/lv_span.h)(0x676E142C)
|
||||||
F (..\App\APP_WU\Src\apps_gather.c)(0x67A55C6B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O2 -Otime --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../App/LCD -I ../App/MODBUS -I ../Utils/inc -I ../App/BLE -I ../App/MUX_SIGNAL -I ../App/DAC8552 -I ../App/HART -I ../App/RN7302 -I ../App/ADS1220 -I ../App/TM1650 -I ../App/DAC7811 -I ../App/SIG24130 -I ../LVGL -I ../LVGL/src -I ../LVGL/examples/porting -I ../LVGL/myGUI/generated -I ../LVGL/myGUI/custom -I ../LVGL/myGUI/generated/guider_fonts -I ../LVGL/myGUI/generated/guider_customer_fonts -I ../App/APP_WU/Src -I ../App/APP_WU/Inc -I ../LVGL/demos/benchmark -I ../LVGL/demos
-I.\RTE\_signal_generator
-IE:\Softwares\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include
-IE:\Softwares\Arm\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include
-D__UVISION_VERSION="539" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx
-o signal_generator\apps_gather.o --omf_browse signal_generator\apps_gather.crf --depend signal_generator\apps_gather.d)
|
F (..\App\APP_WU\Src\apps_gather.c)(0x67A56177)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O2 -Otime --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../App/LCD -I ../App/MODBUS -I ../Utils/inc -I ../App/BLE -I ../App/MUX_SIGNAL -I ../App/DAC8552 -I ../App/HART -I ../App/RN7302 -I ../App/ADS1220 -I ../App/TM1650 -I ../App/DAC7811 -I ../App/SIG24130 -I ../LVGL -I ../LVGL/src -I ../LVGL/examples/porting -I ../LVGL/myGUI/generated -I ../LVGL/myGUI/custom -I ../LVGL/myGUI/generated/guider_fonts -I ../LVGL/myGUI/generated/guider_customer_fonts -I ../App/APP_WU/Src -I ../App/APP_WU/Inc -I ../LVGL/demos/benchmark -I ../LVGL/demos
-I.\RTE\_signal_generator
-IE:\Softwares\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include
-IE:\Softwares\Arm\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include
-D__UVISION_VERSION="539" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx
-o signal_generator\apps_gather.o --omf_browse signal_generator\apps_gather.crf --depend signal_generator\apps_gather.d)
|
||||||
I (../App/APP_WU/Inc/apps_gather.h)(0x67A458CD)
|
I (../App/APP_WU/Inc/apps_gather.h)(0x67A458CD)
|
||||||
I (../Core/Inc/main.h)(0x676E6D8C)
|
I (../Core/Inc/main.h)(0x676E6D8C)
|
||||||
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x66F4ABCF)
|
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x66F4ABCF)
|
||||||
|
|
Loading…
Reference in New Issue