嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
fr5080_xip_lvgl
.
├── __MACOSX
│ └── fr5080_xip
│ ├── app
│ ├── components
│ │ ├── driver
│ │ ├── lv_drivers
│ │ │ ├── display
│ │ │ └── indev
│ │ ├── lvgl
│ │ ├── modules
│ │ │ ├── freertos
│ │ │ └── platform
│ │ └── touch_drivers
│ ├── docs
│ └── examples
│ └── none_evm
│ ├── ble_simple_peripheral
│ ├── btdm_audio_demo
│ └── btdm_drivers_demo
├── fr5080_xip
│ ├── Release Notes.txt
│ ├── app
│ │ ├── code
│ │ │ ├── TFT.c
│ │ │ ├── TFT.h
│ │ │ ├── app_at.c
│ │ │ ├── app_at.h
│ │ │ ├── ble_simple_peripheral.c
│ │ │ ├── ble_simple_peripheral.h
│ │ │ ├── gatt_sig_uuid.h
│ │ │ ├── lv_port_disp.c
│ │ │ ├── lv_port_disp.h
│ │ │ ├── lv_port_indev.c
│ │ │ ├── lv_port_indev.h
│ │ │ ├── proj_main.c
│ │ │ ├── user_task.c
│ │ │ └── user_task.h
│ │ └── proj
│ │ ├── EventRecorderStub.scvd
│ │ ├── ble_simple_peripheral.sct
│ │ ├── ble_simple_peripheral.uvguix.doorxp
│ │ ├── ble_simple_peripheral.uvoptx
│ │ ├── ble_simple_peripheral.uvprojx
│ │ └── debug.log
│ ├── components
│ │ ├── btdm
│ │ │ ├── include
│ │ │ │ ├── a2dp_api.h
│ │ │ │ ├── avrcp_api.h
│ │ │ │ ├── bt_api.h
│ │ │ │ ├── bt_error.h
│ │ │ │ ├── bt_hid_api.h
│ │ │ │ ├── gap_api.h
│ │ │ │ ├── gatt_api.h
│ │ │ │ ├── gatt_sig_uuid.h
│ │ │ │ ├── hf_api.h
│ │ │ │ ├── pbap_api.h
│ │ │ │ ├── pskeys.h
│ │ │ │ ├── spp_api.h
│ │ │ │ └── type_lib.h
│ │ │ ├── library
│ │ │ │ ├── 5080_host.lib
│ │ │ │ ├── llsync_syscall.txt
│ │ │ │ ├── syscall.txt
│ │ │ │ └── tuya_syscall.txt
│ │ │ └── profiles
│ │ │ ├── ble_AMS
│ │ │ │ ├── AMS_client.c
│ │ │ │ ├── AMS_client.h
│ │ │ │ └── 新建文本文档.txt
│ │ │ ├── ble_ANCS
│ │ │ │ ├── ANCS_client.c
│ │ │ │ ├── ANCS_client.h
│ │ │ │ └── 说明.txt
│ │ │ ├── ble_ANCS_AMCS
│ │ │ │ ├── AMS_client.c
│ │ │ │ ├── AMS_client.h
│ │ │ │ ├── ANCS_AMS_client.c
│ │ │ │ ├── ANCS_AMS_client.h
│ │ │ │ └── 说明.txt
│ │ │ ├── ble_AirSync
│ │ │ │ ├── airsync_service.c
│ │ │ │ ├── airsync_service.h
│ │ │ │ └── 说明.txt
│ │ │ ├── ble_audio_profile
│ │ │ │ ├── speaker_service.c
│ │ │ │ └── speaker_service.h
│ │ │ ├── ble_batt
│ │ │ │ ├── batt_service.c
│ │ │ │ └── batt_service.h
│ │ │ ├── ble_dev_info
│ │ │ │ ├── dev_info_service.c
│ │ │ │ └── dev_info_service.h
│ │ │ ├── ble_gap
│ │ │ │ ├── gap_service.c
│ │ │ │ └── gap_service.h
│ │ │ ├── ble_gatt
│ │ │ │ ├── gattm_service.c
│ │ │ │ └── gattm_service.h
│ │ │ ├── ble_hid
│ │ │ │ ├── hid_service.c
│ │ │ │ └── hid_service.h
│ │ │ ├── ble_mesh_models
│ │ │ │ ├── light_models.c
│ │ │ │ └── light_models.h
│ │ │ ├── ble_ota
│ │ │ │ ├── ota.c
│ │ │ │ ├── ota.h
│ │ │ │ ├── ota_dsp.c
│ │ │ │ ├── ota_dsp.h
│ │ │ │ ├── ota_dsp_service.c
│ │ │ │ ├── ota_service.c
│ │ │ │ ├── ota_service.h
│ │ │ │ └── ota_service_dsp.h
│ │ │ └── ble_simple_profile
│ │ │ ├── simple_gatt_service.c
│ │ │ └── simple_gatt_service.h
│ │ ├── driver
│ │ │ ├── driver_adc.c
│ │ │ ├── driver_codec.c
│ │ │ ├── driver_efuse.c
│ │ │ ├── driver_exti.c
│ │ │ ├── driver_flash_ssp.c
│ │ │ ├── driver_gpio.c
│ │ │ ├── driver_i2c.c
│ │ │ ├── driver_i2s.c
│ │ │ ├── driver_ipc.c
│ │ │ ├── driver_pdm.c
│ │ │ ├── driver_pmu.c
│ │ │ ├── driver_pwm.c
│ │ │ ├── driver_rtc.c
│ │ │ ├── driver_sdc.c
│ │ │ ├── driver_ssp.c
│ │ │ ├── driver_syscntl.c
│ │ │ ├── driver_timer.c
│ │ │ ├── driver_uart.c
│ │ │ ├── driver_wdt.c
│ │ │ ├── include
│ │ │ │ ├── driver_adc.h
│ │ │ │ ├── driver_codec.h
│ │ │ │ ├── driver_efuse.h
│ │ │ │ ├── driver_exti.h
│ │ │ │ ├── driver_flash.h
│ │ │ │ ├── driver_flash_ssp.h
│ │ │ │ ├── driver_frspim.h
│ │ │ │ ├── driver_gpio.h
│ │ │ │ ├── driver_i2c.h
│ │ │ │ ├── driver_i2s.h
│ │ │ │ ├── driver_iomux.h
│ │ │ │ ├── driver_ipc.h
│ │ │ │ ├── driver_pdm.h
│ │ │ │ ├── driver_plf.h
│ │ │ │ ├── driver_pmu.h
│ │ │ │ ├── driver_pmu_regs.h
│ │ │ │ ├── driver_pwm.h
│ │ │ │ ├── driver_rtc.h
│ │ │ │ ├── driver_sdc.h
│ │ │ │ ├── driver_ssp.h
│ │ │ │ ├── driver_syscntl.h
│ │ │ │ ├── driver_timer.h
│ │ │ │ ├── driver_triming.h
│ │ │ │ ├── driver_uart.h
│ │ │ │ ├── driver_wdt.h
│ │ │ │ ├── usb_audio.h
│ │ │ │ ├── usb_core.h
│ │ │ │ └── usb_dev.h
│ │ │ ├── msc
│ │ │ │ ├── mscdrvr.c
│ │ │ │ └── mscdrvr.h
│ │ │ ├── sdc
│ │ │ │ ├── scsi.h
│ │ │ │ ├── sdc.c
│ │ │ │ └── sdc.h
│ │ │ ├── usb
│ │ │ │ ├── otg_reg.h
│ │ │ │ ├── usb.c
│ │ │ │ ├── usb.h
│ │ │ │ └── usb_device_u_disc
│ │ │ │ ├── mass_mal.c
│ │ │ │ ├── mass_mal.h
│ │ │ │ ├── memory.c
│ │ │ │ ├── memory.h
│ │ │ │ ├── scsi_data.c
│ │ │ │ ├── usb_bot.c
│ │ │ │ ├── usb_bot.h
│ │ │ │ ├── usb_scsi.c
│ │ │ │ ├── usb_scsi.h
│ │ │ │ ├── usbdev.c
│ │ │ │ ├── usbdev.h
│ │ │ │ ├── usbmass.c
│ │ │ │ └── usbmass.h
│ │ │ ├── usb_audio.c
│ │ │ ├── usb_core.c
│ │ │ └── usb_dev.c
│ │ ├── freetype
│ │ │ ├── arial.ttf
│ │ │ ├── lv_freetype.c
│ │ │ └── lv_freetype.h
│ │ ├── lv_drivers
│ │ │ ├── display
│ │ │ │ ├── GC9A01.c
│ │ │ │ ├── GC9A01.h
│ │ │ │ ├── ILI9341.c
│ │ │ │ ├── ILI9341.h
│ │ │ │ ├── R61581.c
│ │ │ │ ├── R61581.h
│ │ │ │ ├── SHARP_MIP.c
│ │ │ │ ├── SHARP_MIP.h
│ │ │ │ ├── SSD1963.c
│ │ │ │ ├── SSD1963.h
│ │ │ │ ├── ST7565.c
│ │ │ │ ├── ST7565.h
│ │ │ │ ├── UC1610.c
│ │ │ │ ├── UC1610.h
│ │ │ │ ├── drm.c
│ │ │ │ ├── drm.h
│ │ │ │ ├── fbdev.c
│ │ │ │ ├── fbdev.h
│ │ │ │ ├── monitor.c
│ │ │ │ └── monitor.h
│ │ │ ├── indev
│ │ │ │ ├── AD_touch.c
│ │ │ │ ├── AD_touch.h
│ │ │ │ ├── FT5406EE8.c
│ │ │ │ ├── FT5406EE8.h
│ │ │ │ ├── XPT2046.c
│ │ │ │ ├── XPT2046.h
│ │ │ │ ├── evdev.c
│ │ │ │ ├── evdev.h
│ │ │ │ ├── keyboard.c
│ │ │ │ ├── keyboard.h
│ │ │ │ ├── libinput.c
│ │ │ │ ├── libinput_drv.h
│ │ │ │ ├── mouse.c
│ │ │ │ ├── mouse.h
│ │ │ │ ├── mousewheel.c
│ │ │ │ └── mousewheel.h
│ │ │ └── lv_drv_conf.h
│ │ ├── lvgl
│ │ │ ├── lv_conf.h
│ │ │ ├── lvgl.h
│ │ │ └── src
│ │ │ ├── lv_api_map.h
│ │ │ ├── lv_conf_internal.h
│ │ │ ├── lv_conf_kconfig.h
│ │ │ ├── lv_core
│ │ │ │ ├── lv_core.mk
│ │ │ │ ├── lv_disp.c
│ │ │ │ ├── lv_disp.h
│ │ │ │ ├── lv_group.c
│ │ │ │ ├── lv_group.h
│ │ │ │ ├── lv_indev.c
│ │ │ │ ├── lv_indev.h
│ │ │ │ ├── lv_obj.c
│ │ │ │ ├── lv_obj.h
│ │ │ │ ├── lv_obj_style_dec.h
│ │ │ │ ├── lv_refr.c
│ │ │ │ ├── lv_refr.h
│ │ │ │ ├── lv_style.c
│ │ │ │ └── lv_style.h
│ │ │ ├── lv_draw
│ │ │ │ ├── lv_draw.h
│ │ │ │ ├── lv_draw.mk
│ │ │ │ ├── lv_draw_arc.c
│ │ │ │ ├── lv_draw_arc.h
│ │ │ │ ├── lv_draw_blend.c
│ │ │ │ ├── lv_draw_blend.h
│ │ │ │ ├── lv_draw_img.c
│ │ │ │ ├── lv_draw_img.h
│ │ │ │ ├── lv_draw_label.c
│ │ │ │ ├── lv_draw_label.h
│ │ │ │ ├── lv_draw_line.c
│ │ │ │ ├── lv_draw_line.h
│ │ │ │ ├── lv_draw_mask.c
│ │ │ │ ├── lv_draw_mask.h
│ │ │ │ ├── lv_draw_rect.c
│ │ │ │ ├── lv_draw_rect.h
│ │ │ │ ├── lv_draw_triangle.c
│ │ │ │ ├── lv_draw_triangle.h
│ │ │ │ ├── lv_img_buf.c
│ │ │ │ ├── lv_img_buf.h
│ │ │ │ ├── lv_img_cache.c
│ │ │ │ ├── lv_img_cache.h
│ │ │ │ ├── lv_img_decoder.c
│ │ │ │ └── lv_img_decoder.h
│ │ │ ├── lv_font
│ │ │ │ ├── lv_font.c
│ │ │ │ ├── lv_font.h
│ │ │ │ ├── lv_font.mk
│ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c
│ │ │ │ ├── lv_font_fmt_txt.c
│ │ │ │ ├── lv_font_fmt_txt.h
│ │ │ │ ├── lv_font_loader.c
│ │ │ │ ├── lv_font_loader.h
│ │ │ │ ├── lv_font_montserrat_10.c
│ │ │ │ ├── lv_font_montserrat_12.c
│ │ │ │ ├── lv_font_montserrat_12_subpx.c
│ │ │ │ ├── lv_font_montserrat_14.c
│ │ │ │ ├── lv_font_montserrat_16.c
│ │ │ │ ├── lv_font_montserrat_18.c
│ │ │ │ ├── lv_font_montserrat_20.c
│ │ │ │ ├── lv_font_montserrat_22.c
│ │ │ │ ├── lv_font_montserrat_24.c
│ │ │ │ ├── lv_font_montserrat_26.c
│ │ │ │ ├── lv_font_montserrat_28.c
│ │ │ │ ├── lv_font_montserrat_28_compressed.c
│ │ │ │ ├── lv_font_montserrat_30.c
│ │ │ │ ├── lv_font_montserrat_32.c
│ │ │ │ ├── lv_font_montserrat_34.c
│ │ │ │ ├── lv_font_montserrat_36.c
│ │ │ │ ├── lv_font_montserrat_38.c
│ │ │ │ ├── lv_font_montserrat_40.c
│ │ │ │ ├── lv_font_montserrat_42.c
│ │ │ │ ├── lv_font_montserrat_44.c
│ │ │ │ ├── lv_font_montserrat_46.c
│ │ │ │ ├── lv_font_montserrat_48.c
│ │ │ │ ├── lv_font_montserrat_8.c
│ │ │ │ ├── lv_font_simsun_16_cjk.c
│ │ │ │ ├── lv_font_unscii_16.c
│ │ │ │ ├── lv_font_unscii_8.c
│ │ │ │ └── lv_symbol_def.h
│ │ │ ├── lv_gpu
│ │ │ │ ├── lv_gpu.mk
│ │ │ │ ├── lv_gpu_nxp_pxp.c
│ │ │ │ ├── lv_gpu_nxp_pxp.h
│ │ │ │ ├── lv_gpu_nxp_pxp_osa.c
│ │ │ │ ├── lv_gpu_nxp_pxp_osa.h
│ │ │ │ ├── lv_gpu_nxp_vglite.c
│ │ │ │ ├── lv_gpu_nxp_vglite.h
│ │ │ │ ├── lv_gpu_stm32_dma2d.c
│ │ │ │ └── lv_gpu_stm32_dma2d.h
│ │ │ ├── lv_hal
│ │ │ │ ├── lv_hal.h
│ │ │ │ ├── lv_hal.mk
│ │ │ │ ├── lv_hal_disp.c
│ │ │ │ ├── lv_hal_disp.h
│ │ │ │ ├── lv_hal_indev.c
│ │ │ │ ├── lv_hal_indev.h
│ │ │ │ ├── lv_hal_tick.c
│ │ │ │ └── lv_hal_tick.h
│ │ │ ├── lv_misc
│ │ │ │ ├── lv_anim.c
│ │ │ │ ├── lv_anim.h
│ │ │ │ ├── lv_area.c
│ │ │ │ ├── lv_area.h
│ │ │ │ ├── lv_async.c
│ │ │ │ ├── lv_async.h
│ │ │ │ ├── lv_bidi.c
│ │ │ │ ├── lv_bidi.h
│ │ │ │ ├── lv_color.c
│ │ │ │ ├── lv_color.h
│ │ │ │ ├── lv_debug.c
│ │ │ │ ├── lv_debug.h
│ │ │ │ ├── lv_fs.c
│ │ │ │ ├── lv_fs.h
│ │ │ │ ├── lv_gc.c
│ │ │ │ ├── lv_gc.h
│ │ │ │ ├── lv_ll.c
│ │ │ │ ├── lv_ll.h
│ │ │ │ ├── lv_log.c
│ │ │ │ ├── lv_log.h
│ │ │ │ ├── lv_math.c
│ │ │ │ ├── lv_math.h
│ │ │ │ ├── lv_mem.c
│ │ │ │ ├── lv_mem.h
│ │ │ │ ├── lv_misc.mk
│ │ │ │ ├── lv_printf.c
│ │ │ │ ├── lv_printf.h
│ │ │ │ ├── lv_task.c
│ │ │ │ ├── lv_task.h
│ │ │ │ ├── lv_templ.c
│ │ │ │ ├── lv_templ.h
│ │ │ │ ├── lv_txt.c
│ │ │ │ ├── lv_txt.h
│ │ │ │ ├── lv_txt_ap.c
│ │ │ │ ├── lv_txt_ap.h
│ │ │ │ ├── lv_types.h
│ │ │ │ ├── lv_utils.c
│ │ │ │ └── lv_utils.h
│ │ │ ├── lv_themes
│ │ │ │ ├── lv_theme.c
│ │ │ │ ├── lv_theme.h
│ │ │ │ ├── lv_theme_empty.c
│ │ │ │ ├── lv_theme_empty.h
│ │ │ │ ├── lv_theme_material.c
│ │ │ │ ├── lv_theme_material.h
│ │ │ │ ├── lv_theme_mono.c
│ │ │ │ ├── lv_theme_mono.h
│ │ │ │ ├── lv_theme_template.c
│ │ │ │ ├── lv_theme_template.h
│ │ │ │ └── lv_themes.mk
│ │ │ ├── lv_widgets
│ │ │ │ ├── lv_arc.c
│ │ │ │ ├── lv_arc.h
│ │ │ │ ├── lv_bar.c
│ │ │ │ ├── lv_bar.h
│ │ │ │ ├── lv_btn.c
│ │ │ │ ├── lv_btn.h
│ │ │ │ ├── lv_btnmatrix.c
│ │ │ │ ├── lv_btnmatrix.h
│ │ │ │ ├── lv_calendar.c
│ │ │ │ ├── lv_calendar.h
│ │ │ │ ├── lv_canvas.c
│ │ │ │ ├── lv_canvas.h
│ │ │ │ ├── lv_chart.c
│ │ │ │ ├── lv_chart.h
│ │ │ │ ├── lv_checkbox.c
│ │ │ │ ├── lv_checkbox.h
│ │ │ │ ├── lv_cont.c
│ │ │ │ ├── lv_cont.h
│ │ │ │ ├── lv_cpicker.c
│ │ │ │ ├── lv_cpicker.h
│ │ │ │ ├── lv_dropdown.c
│ │ │ │ ├── lv_dropdown.h
│ │ │ │ ├── lv_gauge.c
│ │ │ │ ├── lv_gauge.h
│ │ │ │ ├── lv_img.c
│ │ │ │ ├── lv_img.h
│ │ │ │ ├── lv_imgbtn.c
│ │ │ │ ├── lv_imgbtn.h
│ │ │ │ ├── lv_keyboard.c
│ │ │ │ ├── lv_keyboard.h
│ │ │ │ ├── lv_label.c
│ │ │ │ ├── lv_label.h
│ │ │ │ ├── lv_led.c
│ │ │ │ ├── lv_led.h
│ │ │ │ ├── lv_line.c
│ │ │ │ ├── lv_line.h
│ │ │ │ ├── lv_linemeter.c
│ │ │ │ ├── lv_linemeter.h
│ │ │ │ ├── lv_list.c
│ │ │ │ ├── lv_list.h
│ │ │ │ ├── lv_msgbox.c
│ │ │ │ ├── lv_msgbox.h
│ │ │ │ ├── lv_objmask.c
│ │ │ │ ├── lv_objmask.h
│ │ │ │ ├── lv_objx_templ.c
│ │ │ │ ├── lv_objx_templ.h
│ │ │ │ ├── lv_page.c
│ │ │ │ ├── lv_page.h
│ │ │ │ ├── lv_roller.c
│ │ │ │ ├── lv_roller.h
│ │ │ │ ├── lv_slider.c
│ │ │ │ ├── lv_slider.h
│ │ │ │ ├── lv_spinbox.c
│ │ │ │ ├── lv_spinbox.h
│ │ │ │ ├── lv_spinner.c
│ │ │ │ ├── lv_spinner.h
│ │ │ │ ├── lv_switch.c
│ │ │ │ ├── lv_switch.h
│ │ │ │ ├── lv_table.c
│ │ │ │ ├── lv_table.h
│ │ │ │ ├── lv_tabview.c
│ │ │ │ ├── lv_tabview.h
│ │ │ │ ├── lv_textarea.c
│ │ │ │ ├── lv_textarea.h
│ │ │ │ ├── lv_tileview.c
│ │ │ │ ├── lv_tileview.h
│ │ │ │ ├── lv_widgets.mk
│ │ │ │ ├── lv_win.c
│ │ │ │ └── lv_win.h
│ │ │ └── lvgl.h
│ │ ├── modules
│ │ │ ├── aes
│ │ │ │ ├── api
│ │ │ │ │ ├── aes.h
│ │ │ │ │ └── aes_int.h
│ │ │ │ ├── sourcelist.txt
│ │ │ │ └── src
│ │ │ │ └── aes.c
│ │ │ ├── button
│ │ │ │ └── driver_button.h
│ │ │ ├── codec
│ │ │ │ └── codec.h
│ │ │ ├── common
│ │ │ │ ├── api
│ │ │ │ │ ├── co_list.h
│ │ │ │ │ ├── co_log.h
│ │ │ │ │ ├── co_math.h
│ │ │ │ │ ├── co_printf.h
│ │ │ │ │ ├── co_version.h
│ │ │ │ │ └── user_utils.h
│ │ │ │ ├── sourcelist.txt
│ │ │ │ └── user_util.c
│ │ │ ├── dsp_program
│ │ │ │ ├── dsp_program.c
│ │ │ │ └── dsp_program.h
│ │ │ ├── fr8000_program
│ │ │ │ ├── fr8000_burn.c
│ │ │ │ └── fr8000_burn.h
│ │ │ ├── freertos
│ │ │ │ └── include
│ │ │ │ ├── FreeRTOS.h
│ │ │ │ ├── FreeRTOSConfig.h
│ │ │ │ ├── StackMacros.h
│ │ │ │ ├── croutine.h
│ │ │ │ ├── deprecated_definitions.h
│ │ │ │ ├── event_groups.h
│ │ │ │ ├── list.h
│ │ │ │ ├── message_buffer.h
│ │ │ │ ├── mpu_prototypes.h
│ │ │ │ ├── mpu_wrappers.h
│ │ │ │ ├── portable.h
│ │ │ │ ├── projdefs.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── semphr.h
│ │ │ │ ├── stack_macros.h
│ │ │ │ ├── stdint.readme
│ │ │ │ ├── stream_buffer.h
│ │ │ │ ├── task.h
│ │ │ │ └── timers.h
│ │ │ ├── fs
│ │ │ │ ├── diskio.c
│ │ │ │ ├── diskio.h
│ │ │ │ ├── ff.c
│ │ │ │ ├── ff.h
│ │ │ │ ├── ffconf.h
│ │ │ │ ├── ffsystem.c
│ │ │ │ └── ffunicode.c
│ │ │ ├── ipc
│ │ │ │ ├── ipc_load_code.c
│ │ │ │ └── ipc_load_code.h
│ │ │ ├── mp3_tag
│ │ │ │ ├── mp3_tag_decoder.c
│ │ │ │ └── mp3_tag_decoder.h
│ │ │ ├── os
│ │ │ │ ├── os_mem.h
│ │ │ │ ├── os_msg_q.h
│ │ │ │ ├── os_task.h
│ │ │ │ └── os_timer.h
│ │ │ ├── platform
│ │ │ │ ├── include
│ │ │ │ │ ├── arch.h
│ │ │ │ │ ├── boot.h
│ │ │ │ │ ├── cmsis_armcc.h
│ │ │ │ │ ├── cmsis_compiler.h
│ │ │ │ │ ├── compiler.h
│ │ │ │ │ ├── core_cm3.h
│ │ │ │ │ └── ll.h
│ │ │ │ └── src
│ │ │ │ ├── app_boot_vectors.s
│ │ │ │ └── hardfault.c
│ │ │ └── print
│ │ │ └── co_printf.c
│ │ └── touch_drivers
│ │ ├── FT6336U.cpp
│ │ └── FT6336U.h
│ ├── docs
│ │ ├── FR5080 MCU Jlink调试说明.pdf
│ │ ├── FR5080 SDK User Guide V1.3.1.pdf
│ │ ├── FR508x AT命令及事件定义-V1.3.pdf
│ │ └── fr5080_config烧录说明.pdf
│ ├── examples
│ │ └── none_evm
│ │ ├── ble_simple_central
│ │ │ ├── code
│ │ │ │ ├── app_at.c
│ │ │ │ ├── app_at.h
│ │ │ │ ├── ble_simple_central.c
│ │ │ │ ├── ble_simple_central.h
│ │ │ │ ├── gatt_sig_uuid.h
│ │ │ │ ├── proj_main.c
│ │ │ │ ├── user_bt.c
│ │ │ │ ├── user_bt.h
│ │ │ │ ├── user_task.c
│ │ │ │ └── user_task.h
│ │ │ └── proj
│ │ │ ├── ble_simple_central.sct
│ │ │ └── ble_simple_central.uvprojx
│ │ ├── ble_simple_peripheral
│ │ │ ├── code
│ │ │ │ ├── app_at.c
│ │ │ │ ├── app_at.h
│ │ │ │ ├── ble_simple_peripheral.c
│ │ │ │ ├── ble_simple_peripheral.h
│ │ │ │ ├── gatt_sig_uuid.h
│ │ │ │ ├── proj_main.c
│ │ │ │ ├── user_task.c
│ │ │ │ └── user_task.h
│ │ │ └── proj
│ │ │ ├── ble_simple_peripheral.sct
│ │ │ ├── ble_simple_peripheral.uvoptx
│ │ │ └── ble_simple_peripheral.uvprojx
│ │ ├── btdm_audio_demo
│ │ │ ├── code
│ │ │ │ ├── app_at.c
│ │ │ │ ├── app_at.h
│ │ │ │ ├── app_error.h
│ │ │ │ ├── app_user_bt.h
│ │ │ │ ├── audio_source.c
│ │ │ │ ├── audio_source.h
│ │ │ │ ├── ble_simple_peripheral.c
│ │ │ │ ├── ble_simple_peripheral.h
│ │ │ │ ├── comm.c
│ │ │ │ ├── comm.h
│ │ │ │ ├── gatt_sig_uuid.h
│ │ │ │ ├── mp3_sample.c
│ │ │ │ ├── mp3_sample.h
│ │ │ │ ├── msbc_playback.c
│ │ │ │ ├── msbc_playback.h
│ │ │ │ ├── msbc_sample.h
│ │ │ │ ├── native_playback.c
│ │ │ │ ├── native_playback.h
│ │ │ │ ├── proj_main.c
│ │ │ │ ├── spi_slave_hal.c
│ │ │ │ ├── spi_slave_hal.h
│ │ │ │ ├── user_bt.c
│ │ │ │ ├── user_bt.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_dsp.c
│ │ │ │ ├── user_dsp.h
│ │ │ │ ├── user_fs.c
│ │ │ │ ├── user_fs.h
│ │ │ │ ├── user_hid.h
│ │ │ │ ├── user_spi_slave.c
│ │ │ │ ├── user_task.c
│ │ │ │ └── user_task.h
│ │ │ └── proj
│ │ │ ├── 5080_btdm_audio.sct
│ │ │ ├── 5080_btdm_audio.uvguix.doorxp
│ │ │ ├── 5080_btdm_audio.uvoptx
│ │ │ └── 5080_btdm_audio.uvprojx
│ │ └── btdm_drivers_demo
│ │ ├── code
│ │ │ ├── app_at.c
│ │ │ ├── app_at.h
│ │ │ ├── proj_main.c
│ │ │ ├── test_drivers.c
│ │ │ ├── test_drivers.h
│ │ │ ├── user_bt.c
│ │ │ ├── user_bt.h
│ │ │ ├── user_ipc.c
│ │ │ ├── user_ipc.h
│ │ │ ├── user_task.c
│ │ │ └── user_task.h
│ │ └── proj
│ │ ├── 5080_btdm.sct
│ │ └── 5080_btdm.uvprojx
│ └── tools
│ ├── config.json
│ ├── download_app_0316_normal.exe
│ ├── download_app_220717.exe
│ ├── download_config.json
│ └── fr5080_config_220705.exe
└── fr5080_xip_lvgl_fr5080_xip.zip
98 directories, 547 files