Getting Started with LabVIEW and BeagleBone Black

Getting Started with LabVIEW and BeagleBone Black

Hello, dear friends, welcome back to Xiao Linzi’s LabVIEW~ LabVIEW and BeagleBone Black – Light Up a Lamp Last Friday, I explained to everyone how to program BBB in the LabVIEW development environment including: 1. Install the “English version” of LabVIEW 2014 or later 2. Install VIPM 3. Install the Linx 3.0 package Click the … Read more

Creating MATLAB Tutorials with Attention to Detail

Creating MATLAB Tutorials with Attention to Detail

I found that I really have OCD! When I create MATLAB tutorials, as soon as I notice a table spans rows, I immediately adjust it! Sentences across lines in the same paragraph? That is even more of a “thorn in my eye”! Being so “picky” has allowed me to complete hundreds of pages of tutorial … Read more

MATLAB Recreation of Douyin’s Popular Snake Cutting Game

MATLAB Recreation of Douyin's Popular Snake Cutting Game

Please respect original work. If reprinting, please indicate the link and author: slandarer It’s been a few days, and I’ve missed you all. The Spring Festival is approaching, and I anticipate being busy, so I decided to finish and publish this tutorial in advance. I was considering what snake year code to write, and suddenly … Read more

EMMC Chip Offline Read and Write Demonstration for LCD TV Mainboard

EMMC Chip Offline Read and Write Demonstration for LCD TV Mainboard

Open the RT809H operation interface, click [Smart Identification], select TYPE as EMMC, and Volt as 3.3V. Click settings, check EMMC Area in front of User/boot1/boot2/EXT_CSD, select VCCQ as 3.3V, then click write, choose the backup file, and select any one to start writing. RT809H Programmer Taobao Link: https://item.taobao.com/item.htm?id=551805435687 eMMC Programming Socket Taobao Link: https://item.taobao.com/item.htm?id=560967621649 Copy … Read more

RT809H Programmer Tutorial for EMMC Chip Direct Write

RT809H Programmer Tutorial for EMMC Chip Direct Write

RT809H Programmer Tutorial: Introduction to the Direct Write Function for EMMC Chip on TV Mainboards EMMC Direct Write Boot Program Operation Demonstration Video: Smart TVs are very common in the market today, and the repair of TV mainboards often involves data copying. Using the RT809H programmer allows for easy reading of normal machine data for … Read more

Understanding NOR Flash Memory Structure and Operations

Understanding NOR Flash Memory Structure and Operations

Welcome FPGA engineers to join the official WeChat technical group. This article mainly introduces the structure, external interfaces, and operations of NOR Flash. In NOR Flash, the ‘N’ stands for NOT, meaning that when there is a charge in the Floating Gate, it reads ‘0’, and when there is no charge, it reads ‘1’. This … Read more

Complete MQTT Client: Settling Previous Debts

Complete MQTT Client: Settling Previous Debts

Recently, I’ve been quite busy, and focusing on the right direction is important. The VFP hardware development course has recently concluded, and I’m taking the opportunity to complete the MQTT client, which supports QOS0, QOS1, and LAST WILL MSG. Support for QOS2 will be considered if there is demand. Cat’s Heartfelt Words Garfield’s VFP | … Read more

In-Depth PHP Debugging with GDB

In-Depth PHP Debugging with GDB

Author: bobyzhang, Tencent IEG Operations Development Engineer There is a debug mode when compiling PHP, which disables memory optimization, alerts for memory leaks, and disables call stack optimization to allow us to see the complete PHP C-level call stack. Typically, I compile two versions of PHP (one normal and one with debug) in different directories, … Read more

5 Lesser-Known GDB Debugger Tips

5 Lesser-Known GDB Debugger Tips

Learn how to use some lesser-known features of gdb to inspect and fix your code. — Tim Waugh GNU Debugger (gdb) is a valuable tool for inspecting running processes and troubleshooting while developing programs. You can set breakpoints at specific locations (by function name, line number, etc.), enable and disable these breakpoints, display and change … Read more