# bes-nuttx-glyphix **Repository Path**: xfaith-tech/bes-nuttx-glyphix ## Basic Information - **Project Name**: bes-nuttx-glyphix - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-09 - **Last Updated**: 2026-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # glyphix demo ### 配置工程 - 工程根目录执行: ```shell ./build.sh boards/best1700_ep/pri_0032/configs/ap menuconfig ``` - 进入 `Application Configuration → Examples` 选项 - 取消`LVGL Demo` - 选择`Glyphix Demo` - 保存退出 ![configure](figures/configure.png) - 再执行以下命令清理缓存: ```shell ./prebuild/build_nx_2800bp_pri_0032.sh distclean ./prebuild/build_nx_2800bp_pri_0032.sh cmake distclean ``` - 修改 `./prebuild/build_nx_2800bp_pri_0032.sh` 文件关于 `AP` 的配置,增加GPU支持选项:CHIP_HAS_GPU=1 ```shell elif [ "$1" = "ap" ]; then cmd=$cmd"DSP_HIFI4_TRC_TO_MCU=1 ONLY_BT_DRIVE_INIT=1 CHIP_DMA_CFG_IDX=3 RPTUN_M55C1_2_DSPC0=1 UTILS_ESHELL_BTRF_TEST=1 BTHC0_USE_ADC2=1 CODEC_CLK_SEL_BTH=1 \ CODEC_ADC2_DSF=1 CODEC_ADC3_DSF=1 FAST_TIMER_COMPENSATE=1 PMU_CLK_USE_EXT_CRYSTAL=1 MM_PROJECT=$MM_PROJECT $WEBSVR_CFG BT_PAN_SUPPORT=1 CHIP_HAS_GPU=1 \ $AUDIO_PROCESS_ONLINE_CFG " fi ``` ### 编译工程 - 执行以下命令使用cmake构建工程: ```shell ./prebuild/build_nx_2800bp_pri_0032.sh cmake ```