Quickly Configure Wireless Module to Connect to Home Wifi

Quickly Configure Wireless Module to Connect to Home Wifi

Recently, I played with Microchip’s wireless WiFi module, which is quite simple to configure and can connect to a microcontroller via serial. Today, I will share how to quickly configure this module to connect to home WiFi. Upon receiving any module, the first step is to restore the factory settings and configure it to connect … Read more

Detailed Explanation of SPI

Detailed Explanation of SPI

1 Introduction to SPI SPI, short for Serial Peripheral Interface, is a synchronous serial communication protocol. It was first defined by Motorola for its MC68HCXX series processors. The SPI interface is primarily used in EEPROM, FLASH, real-time clocks, ADCs, as well as between digital signal processors and digital signal decoders. SPI is a high-speed, full-duplex, … Read more

SPI Interface Notes Compilation

SPI Interface Notes Compilation

Introduction to SPI Interface and Features The standard SPI interface has 4 signal lines. Signal Function Direction SCLK Clock signal line, used for synchronizing communication data master->slave MOSI Master device output master->slave MISO Master device input slave->master CS Slave device select signal line, commonly referred to as chip select signal line, also known as NSS, … Read more

Detailed Explanation of SPI Principles – A Must Read

Detailed Explanation of SPI Principles - A Must Read

What is SPI SPI stands for Serial Peripheral Interface in English, which, as the name suggests, is a serial peripheral device interface. It was first defined by Motorola in its MC68HCXX series processors. SPI is a high-speed, full-duplex, synchronous communication bus that only occupies four lines on the chip’s pins, saving pin space and providing … Read more

Dynamic Demonstration of Common Communication Protocols in Embedded Systems

Dynamic Demonstration of Common Communication Protocols in Embedded Systems

Source: CSDN: https://blog.csdn.net/an520_/article/details/125479812, copyright belongs to the author, please contact for removal! Because it is a good article, I hope to share it with more people! UART, SPI, I2C and other serial communications are very common communication methods in embedded development. The underlying communication principles of these protocols are actually not difficult, but many beginners … Read more

Detailed Explanation of UART Protocol Based on Z20k11X

Detailed Explanation of UART Protocol Based on Z20k11X

Click the blue words Follow us 1. Introduction 1. Concept USART (Universal Synchronous Asynchronous Receiver Transmitter) is a serial communication device that can flexibly perform full-duplex information exchange with external devices. UART (Universal Asynchronous Receiver/Transmitter) is a bidirectional, serial, asynchronous communication bus that can achieve full-duplex communication using only one data receiving line (RXD) and … Read more

Quick Use of UART Serial Port and Applications

Quick Use of UART Serial Port and Applications

1. Serial Port Activation Process Before we start, let’s take a look at a few demo programs for serial ports from different chips. These include the STM32 V3.5 standard library, the official demo for nRF52832, and the official DEMO for the STC15 series microcontroller with a 51 core. From the above demo examples and the … Read more

Advanced Usage of EMMC Read/Write (Custom Address)

Advanced Usage of EMMC Read/Write (Custom Address)

The address-specified write function supports EMMC_AUTO_ISP (flying line programming), EMMC_AUTO (offline 8x programming), EMMC_AUTO_4BIT (offline socket 4x programming), and EMMC_AUTO_1BIT (offline socket 1x programming). The operation methods for several programming modes are the same, and we will take EMMC_AUTO as an example to introduce the “custom address writing” function. After selecting the EMMC_AUTO function, click … Read more

3 Reasons Why CAN is Better Than RS-485

3 Reasons Why CAN is Better Than RS-485

Introduction RS-485 and CAN are both serial communication protocols. They allow for the arrangement of multiple devices within a single system, significantly reducing cable lengths. Their differential design is suitable for environments with strong interference, and both use 120 Ω termination resistors, equipped with internal over-voltage circuits for fault protection.RS-485 and CAN have many similarities, … Read more

Differences Between RS-232, RS-422, and RS-485

Differences Between RS-232, RS-422, and RS-485

Siemens S7-1500 Project Design and Practice Complete Tutorial! Siemens Communication Principles and Methods Mastery Tutorial Free Download! Over 600 CasesElectronic Repair TipsRepair Engineer’s Bible! Over 600 Common Electrical Circuit Diagrams Pack Download for Free! Popular Brand PLC Programming Series Books Free Download! Serial communication is the most basic communication method faced by electrical engineers, with … Read more