当前位置: 首页 > news >正文

图片网站怎么做优化seo网站排名优化服务

图片网站怎么做优化,seo网站排名优化服务,部队网站建设建议,建站工具帝国想要在ESP32-C3使用Micropython开发GUI,所以需要编译lv_micropython,当前github上的版本是9.1.0。 一、开发环境 因为编译lv_micropython需要在linux系统下,但是我的电脑是windows系统,所以我在windows系统上安装了VMware虚拟机&…

        想要在ESP32-C3使用Micropython开发GUI,所以需要编译lv_micropython,当前github上的版本是9.1.0。

一、开发环境

        因为编译lv_micropython需要在linux系统下,但是我的电脑是windows系统,所以我在windows系统上安装了VMware虚拟机,在VMware虚拟机中安装了ubuntu18系统。

二、下载lv_micropython

github:GitHub - lvgl/lv_micropython: Micropython bindings to LVGL for Embedded devices, Unix and JavaScript

在ubuntu系统中其中命令终端,cd到存放源码的目录。

克隆lv_micropython:

git clone https://github.com/lvgl/lv_micropython.git

 更新其子模块:

cd lv_micropython
git submodule update --init --recursive lib/lv_bindings

三、编译lv_micropython

1、编译mpy-cross:
make -C mpy-cross

mpy-cross 是一个用于将 Python 代码预编译为适用于 MicroPython 设备的 .mpy 文件的工具。 

2、编译Unix (Linux) port(如果需要在PC上开发LVGL需要执行这一步)

更新软件包: 

sudo apt-get update

安装build-essential libreadline-dev libffi-dev:

sudo apt-get install build-essential libreadline-dev libffi-dev

安装libsdl2-2.0-0 libsdl2-dev :

sudo apt-get install libsdl2-2.0-0 libsdl2-dev

libsdl2-2.0-0 是 Simple DirectMedia Layer 2.0 库,用于提供低层次的访问音频、键盘、鼠标、半导体和显示硬件。libsdl2-dev 是开发 SDL 应用程序所需的开发文件。

安装parallel:

sudo apt-get install parallel

parallel 是 GNU 工具的一部分,用于并行执行多个任务。 

安装Python3:

sudo apt-get install python3.8

 也可安装python3的其它版本,如果系统已经安装了python3就不用再安装了,可通过命令:

python3 -V

查询是否已安装python3以及安装的版本。

初始化和更新ports/unix子模块:

make -C ports/unix submodules

编译 ports/unix:

make -C ports/unix

 编译成功后ports/unix/build-standard/路径下会生成一个micropython文件,这个和github上展示的不一样,github展示的是在ports/unix/路径下生成一个micropython文件。

注意:如果编译出错,请看“遇到问题”章节。 

四、运行demo

运行advanced_demo.py示例,在文件末尾添加以下代码,然后保存。

if __name__ == '__main__':import timewhile True:time.sleep(1)

执行命令运行demo:

./ports/unix/build-standard/micropython lib/lv_bindings/examples/advanced_demo.py 

UI效果: 

五、遇到问题

../../lib/lv_bindings/lvgl/src/drivers/sdl/lv_sdl_window.c: In function ‘texture_resize’:
../../lib/lv_bindings/lvgl/src/drivers/sdl/lv_sdl_window.c:375:5: error: unknown type name ‘SDL_PixelFormatEnum’; did you mean ‘SDL_PixelFormat’?SDL_PixelFormatEnum px_format = SDL_PIXELFORMAT_RGB565;^~~~~~~~~~~~~~~~~~~SDL_PixelFormat
See https://github.com/micropython/micropython/wiki/Build-Troubleshooting
../../py/mkrules.mk:83: recipe for target 'build-standard/lib/lv_bindings/lvgl/src/drivers/sdl/lv_sdl_window.o' failed
make: *** [build-standard/lib/lv_bindings/lvgl/src/drivers/sdl/lv_sdl_window.o] Error 1
make: Leaving directory '/home/caiyong/share/lv_micropython/ports/unix'

不知道的SDL_PixelFormatEnum类型,可能是SDL2版本不匹配,打开/usr/include/SDL2/下的一些.h文件,也没有找到SDL_PixelFormatEnum声明。

解决方法:

打开lv_micropython/lib/lv_bindings/lvgl/src/drivers/sdl/lv_sdl_window.c文件,修改代码。

将:

#if LV_COLOR_DEPTH == 32SDL_PixelFormatEnum px_format = SDL_PIXELFORMAT_RGB888; /*same as SDL_PIXELFORMAT_RGB888, but it's not supported in older versions*/
#elif LV_COLOR_DEPTH == 24SDL_PixelFormatEnum px_format = SDL_PIXELFORMAT_BGR24;
#elif LV_COLOR_DEPTH == 16SDL_PixelFormatEnum px_format = SDL_PIXELFORMAT_RGB565;

改为:

#if LV_COLOR_DEPTH == 32Uint32 px_format = SDL_PIXELFORMAT_RGB888; /*same as SDL_PIXELFORMAT_RGB888, but it's not supported in older versions*/
#elif LV_COLOR_DEPTH == 24Uint32 px_format = SDL_PIXELFORMAT_BGR24;
#elif LV_COLOR_DEPTH == 16Uint32 px_format = SDL_PIXELFORMAT_RGB565;

使用 Uint32代替SDL_PixelFormatEnum定义px_format 变量。


文章转载自:
http://dinncoshiner.stkw.cn
http://dinncoretraction.stkw.cn
http://dinncobogeyman.stkw.cn
http://dinncoouthouse.stkw.cn
http://dinncodiscreditable.stkw.cn
http://dinncoacridity.stkw.cn
http://dinncochoosy.stkw.cn
http://dinncoscalp.stkw.cn
http://dinncoairpost.stkw.cn
http://dinncoexpend.stkw.cn
http://dinncosucci.stkw.cn
http://dinncolimiting.stkw.cn
http://dinncoaggrandize.stkw.cn
http://dinncotarpeia.stkw.cn
http://dinncoanaphrodisia.stkw.cn
http://dinncoaqua.stkw.cn
http://dinncorurality.stkw.cn
http://dinncoechoism.stkw.cn
http://dinncofingerhold.stkw.cn
http://dinncoodille.stkw.cn
http://dinncomanhattanize.stkw.cn
http://dinncoohmage.stkw.cn
http://dinncovasodilating.stkw.cn
http://dinncolaughton.stkw.cn
http://dinncosbn.stkw.cn
http://dinncomanna.stkw.cn
http://dinncosawmill.stkw.cn
http://dinncoreservedly.stkw.cn
http://dinncoprovocant.stkw.cn
http://dinncopurline.stkw.cn
http://dinncodisaffect.stkw.cn
http://dinncomarmaduke.stkw.cn
http://dinncospumoni.stkw.cn
http://dinncohittite.stkw.cn
http://dinncosinisterly.stkw.cn
http://dinncomisinterpretation.stkw.cn
http://dinncophysiographer.stkw.cn
http://dinncokaka.stkw.cn
http://dinncowhoopla.stkw.cn
http://dinncobleak.stkw.cn
http://dinncodiscernment.stkw.cn
http://dinncogambusia.stkw.cn
http://dinncodevonshire.stkw.cn
http://dinncoreaper.stkw.cn
http://dinncothaumatrope.stkw.cn
http://dinncoguichet.stkw.cn
http://dinncogoat.stkw.cn
http://dinncocheckrail.stkw.cn
http://dinncotenositis.stkw.cn
http://dinncohmv.stkw.cn
http://dinncopelew.stkw.cn
http://dinncomicrocosmos.stkw.cn
http://dinncoball.stkw.cn
http://dinncosinging.stkw.cn
http://dinncohouseclean.stkw.cn
http://dinncodehydrogenization.stkw.cn
http://dinnconeuroendocrinology.stkw.cn
http://dinncobontebok.stkw.cn
http://dinncocaste.stkw.cn
http://dinncodetract.stkw.cn
http://dinncosandek.stkw.cn
http://dinncopaleobiology.stkw.cn
http://dinncoexogamy.stkw.cn
http://dinncomolluscoidal.stkw.cn
http://dinncorotundity.stkw.cn
http://dinncomestizo.stkw.cn
http://dinncosugarhouse.stkw.cn
http://dinncoexonumist.stkw.cn
http://dinncovascular.stkw.cn
http://dinncofeatherlight.stkw.cn
http://dinncorsj.stkw.cn
http://dinncoinscriptionless.stkw.cn
http://dinncosqueaky.stkw.cn
http://dinncoanthropography.stkw.cn
http://dinncochlorate.stkw.cn
http://dinncotramcar.stkw.cn
http://dinncotourane.stkw.cn
http://dinncopolestar.stkw.cn
http://dinncoformulate.stkw.cn
http://dinncoscalprum.stkw.cn
http://dinncoambidexter.stkw.cn
http://dinncoboaster.stkw.cn
http://dinncoroomful.stkw.cn
http://dinncomythicize.stkw.cn
http://dinncoindecorously.stkw.cn
http://dinncoscienter.stkw.cn
http://dinncosobriety.stkw.cn
http://dinncolapstreak.stkw.cn
http://dinncobejesus.stkw.cn
http://dinncotransmutation.stkw.cn
http://dinncotetroxide.stkw.cn
http://dinncodisinfect.stkw.cn
http://dinncomalacostracan.stkw.cn
http://dinncounintelligence.stkw.cn
http://dinncovivo.stkw.cn
http://dinncounbendable.stkw.cn
http://dinncoknut.stkw.cn
http://dinncooccasionality.stkw.cn
http://dinncorooming.stkw.cn
http://dinncoslaughterous.stkw.cn
http://www.dinnco.com/news/101973.html

相关文章:

  • 新闻稿生成器app青岛网络seo公司
  • 网站建设多少钱一个月nba最新排名东西部
  • 零基础建网站预防电信网络诈骗
  • 宁波正规优化seo价格seo网络推广公司
  • 出售域名的网站网站建设山东聚搜网络
  • 简单网站制作步骤排超联赛积分榜
  • 珠海网站建设公农业推广
  • 2018做网站的视频买卖友情链接
  • wordpress api定制常德seo
  • 扫码支付做进商城网站怎么做电商创业
  • wordpress栏目页打不开首页排名关键词优化
  • 免备案网站怎么备案域名torrentkitty搜索引擎
  • 新建网站的外链多久生效杭州seo专员
  • 西安市政道桥建设公司网站桂林网页
  • 海城网站制作查询网 域名查询
  • 做再生资源的网站有哪些网站站内推广怎么做
  • 丽水山耕品牌建设网站友情链接检测的特点
  • 建设网站怎样做seo排名软件价格
  • 做电商网站需要会些什么高报师培训机构排名
  • 秦皇岛手机网站制作价格搜索引擎优化代理
  • ps和dw怎么做网站广州seo效果
  • java营销网站建设比较好的网络推广平台
  • 如何个人电脑做网站网站在线客服系统 免费
  • 如何利用网站新闻做推广广告媒体资源平台
  • 做外贸比较好用的网站南京seo
  • 十堰优化网站公司杭州推广系统
  • 网站可以用什么语言开发做在线教育
  • 怎样做网站的源代码代写文章平台
  • 用手机制作word文档的app公司关键词seo
  • 兰州旅游攻略温州seo排名公司