How to Install and Configure PPPoE Server on OpenWRT

How to Install and Configure PPPoE Server on OpenWRT

Installing PPPoE on OpenWRT: 12 opkg update opkg install rp-pppoe-server Configuring PPPoE: 123456789 cat > pppoe-server-options << EOF # PPP options for the PPPoE server # LIC: GPL require-chap login lcp-echo-interval 10 lcp-echo-failure 2 ms-dns 8.8.8.8 EOF Setting up PPPoE account and password: 1234 cat > /etc/ppp/chap-secrets << EOF #USERNAME PROVIDER PASSWORD IPADDRESS www.haiyun.me * … Read more

Setting Up Samba on Raspberry Pi for File Sharing

Setting Up Samba on Raspberry Pi for File Sharing

Introduction Today, I will discuss how to set up <span>Samba</span> on Raspberry Pi for file sharing. Installation sudo pacman -S samba The configuration file is located at <span>/etc/samba/smb.conf</span>, but when you check this path, you will find it is empty. After searching for a while, I finally found a solution in Using Samba on Manjaro … Read more

Understanding FreeRTOSConfig.h Configuration File

Understanding FreeRTOSConfig.h Configuration File

Ⅰ Introduction In addition to the “General Configuration” in the FreeRTOSConfig.h configuration file, the content of other configurations is relatively less used by beginners and is also relatively difficult to understand. To give beginners a general understanding, this article continues to discuss the content of FreeRTOSConfig.h configuration, and further discussions will be combined with applications … Read more

Upgrade Core Plugin: Enable xhttp and Enter a New Era of Networking

Upgrade Core Plugin: Enable xhttp and Enter a New Era of Networking

Install the New xxrplus Simple Version: Back up the configuration file. Click thisGenerate Backup button to automatically generate the backup file and download it. Upload the firmware without keeping the configuration. Be sure to uncheck Keep Configuration, then upload the firmware and flash it for the upgrade. After the upgrade, restore the configuration. Wait for … Read more

Understanding STM32 Clocks

Understanding STM32 Clocks

Introduction to STM32 Clock Sources 1. The main clock sources of STM32 are: Internal Clock External Clock Phase Locked Loop (PLL) Frequency Multiplier Output Clock 1.1 Detailed Introduction HSI (Internal High-Speed Clock) It is an RC oscillator with a frequency of up to 8MHz, which can be used as the system clock and PLL input. … Read more