Comprehensive Guide to Python Embedded System Development: From Basics to Practice

Comprehensive Guide to Python Embedded System Development: From Basics to Practice

Getting Started with Python Embedded System Development Yuan Xiaodi Takes You into the Wonderful World of Python Embedded Development Hello, friends! I am Yuan Xiaodi, and today we will explore the application of Python in embedded system development together. Imagine using Python, a simple and elegant language, to control hardware. Isn’t it both magical and … Read more

Running VxWorks 7 on Raspberry Pi 3B/3B+

Running VxWorks 7 on Raspberry Pi 3B/3B+

Introduction The VxWorks 7 SDK is a development environment specifically designed for VxWorks application developers, including the following features: Standard cross-compilation tools based on clang/LLVM for building downloadable kernel modules (DKM) and RTP (real-time process) applications Simplified build management: makefile, cmake, roll-your own Target/architecture specific: includes a generic VxWorks kernel that can be booted on … Read more

Essential Embedded Tools for Developers

Essential Embedded Tools for Developers

Previously shared in the article “Embedded Software Tools List” were some commonly used and well-known tools. In this article, we will summarize some lesser-known but very practical auxiliary tools, hoping to be of help to everyone. 1. VSPD Virtual Serial Port Driver (VSPD) is a virtual serial port software. Virtual serial port software simulates physical … Read more

Comprehensive Collection of AS Plugins for Android Development

Comprehensive Collection of AS Plugins for Android Development

Weige says: In AS, using plugins to assist development can improve development efficiency. Below is a compilation of 22 plugins recommended by most netizens. Take a look, and feel free to share more plugins. Part One: Introduction to PluginsGoogle introduced Android Studio based on IntelliJ IDEA java IDE at the I/O Developer Conference in May … Read more

Empowering Raspberry Pi Camera with Picamera2: Unlocking the World of Imaging

Empowering Raspberry Pi Camera with Picamera2: Unlocking the World of Imaging

As a powerful microcomputer, Raspberry Pi’s strong image processing capabilities attract numerous makers and developers. In the past, Picamera, as the official Python imaging library for Raspberry Pi, provided developers with a convenient way to capture and process images. However, with the continuous development of technology, Picamera can no longer meet new demands. Therefore, the … Read more

Step-by-Step Guide to Porting LVGL to the T113-i Industrial Development Board

Step-by-Step Guide to Porting LVGL to the T113-i Industrial Development Board

There are many embedded GUI libraries available on the market, including open-source GUI libraries such as LVGL and EmWin, and closed-source GUI libraries like TouchGFX and Persimmon GUI. The testing board for this development tutorial comes from Tronlong Technology’s TLT113-EVM industrial evaluation board, which is based on the Allwinner Technology T113-i dual-core ARM Cortex-A7 + … Read more

Embedded Operating System Development and Practice Training

Embedded Operating System Development and Practice Training

In today’s rapidly developing information technology, we have crossed the analog, digital, network, and mobile eras, entering a new era of artificial intelligence and even embodied intelligence. In this process, the importance of embedded IoT technology has become increasingly prominent. With the continuous improvement of hardware performance, using operating systems for development has become mainstream. … Read more

Comprehensive Guide to Android Material Design Support Libraries

Comprehensive Guide to Android Material Design Support Libraries

https://www.aswifter.com/2015/06/21/andorid-material-design-support-library/ The Android Material Design support library provides several new components. Here, we briefly introduce these components and how to use them. I am a fan of Material Design as it makes applications more consistent and cohesive, looks more beautiful, and is easier to use. Google I/O 2015 introduced some great new Android features, including … Read more

Getting Started with Data Binding in Android Development

Getting Started with Data Binding in Android Development

Author: Mark Zhai Original: http://blog.zhaiyifan.cn/2016/06/16/android-new-project-from-0-p7/ Introduction Data Binding has been available since its release at last year’s Google I/O, and it has been nearly a year now. Over this year, from Beta to a more stable version, and from Android Studio 1.3 to the current 2.1.2, Data Binding has become a technology that is quite … Read more

Comprehensive Summary of Android Knowledge Points: Essential for Interviews

Comprehensive Summary of Android Knowledge Points: Essential for Interviews

Original link: https://github.com/GeniusVJR/LearningNotes/blob/master/Part1/Android/Android基础知识.md FrameLayout This layout is the simplest among the five layouts. Android does not control the arrangement of child views, and all controls in this layout will default to appear in the top left corner of the view. We can use <span>android:layout_margin</span>, <span>android:layout_gravity</span> and other attributes to control the position of child controls … Read more