Detailed transplantation summary of U-BOOT based on ARM processor

         In the development stage of an embedded product, the bootloader needs to be continuously downloaded to the memory. If the memory uses nand flash, but there is nothing in it for the first time, it can only be started in other ways according to the startup mode of the processor, such as SD card or ...

Posted by neox_blueline on Thu, 07 Oct 2021 15:51:02 -0700

Arduino for esp32 -- Introduction and use of esp-now

ESP-NOW introduction ESP-NOW is a protocol developed by Espressif, which allows multiple devices to communicate with each other without using Wi Fi. The protocol is similar to a low-power 2.4GHz wireless connection. Pairing between devices needs to be completed before communication. After pairing, the connection is secure, point-to-point, ...

Posted by konsu on Thu, 30 Sep 2021 18:04:22 -0700

DIY smart home from scratch - intelligent water turbidity sensor based on ESP32

preface There is a fish tank at home with several fish to play, but the problem of changing the water is really a headache. If you don't pay attention, you often forget to change the water, and the fish will disappear. o(╥﹏╥)o After obtaining Spirit 1 Edge computer After that, it is equivalent to having a personal intelligent device se ...

Posted by tieded on Thu, 30 Sep 2021 16:53:22 -0700

akka entry series - 5. Routing messages

5. Routing messages In the previous example, we created and used a single actor, and an actor can only process one message at the same time, which does not give play to the advantages of akka parallel computing. We hope to process messages in parallel, just like kafka's consumer. This requires the use of routing to akka. Routing is the same a ...

Posted by dmb on Mon, 27 Sep 2021 22:14:44 -0700

DHT11 temperature and humidity LCD display

1, Introduction to temperature and humidity module sensor DHT11 digital temperature and humidity sensor is a temperature and humidity composite sensor with calibrated digital signal output. It applies special digital module acquisition technology and temperature and humidity sensing technology to ensure that the product has high reliability an ...

Posted by watson100 on Thu, 23 Sep 2021 06:39:18 -0700

[punctual atom linux serial] Chapter 54 platform device driver experiment - extracted from [punctual atom] I.MX6U embedded Linux Driver Development Guide V1.0

1) Experimental platform: punctual atom alpha Linux development board 2) Platform purchase address: https://item.taobao.com/item.htm?id=603672744434 2) Full set of experimental source code + manual + video download address: http://www.openedv.com/thread-300792-1-1.html 3) Students interested in punctual atomic Linux can add group discussion: 93 ...

Posted by kidintraffic on Tue, 21 Sep 2021 23:55:12 -0700

The official series of coerced death! SDK framework based on sddc protocol_ sdk_ Lib parsing

SDK framework based on sddc protocol_ sdk_ Lib parsing Previously, when porting libsddc library, I felt that the official demo was too inefficient ( ̄.  ̄). I was tired of copying and pasting code, and wrote a BUG, and the other copied code cracked, so I wrote an sddc_sdk_lib library to make sddc access devices faster and more effective. This ...

Posted by David03 on Tue, 21 Sep 2021 18:28:08 -0700

FATFS Function Usage Notes

1.FRESULT f_opendir(DIR *dp,const TCHAR *path); Function: Open a directory parameterfunctiondpA pointer to an empty directory object structure that stores directory information about to be openedpathRoute The return value FR_OK(0) indicates that the function was executed successfully and the directory object structure was created for subsequen ...

Posted by carlosx2 on Sat, 18 Sep 2021 20:35:46 -0700

FreeRTOS and RT-Thread for Interrupt and Critical Zone Processing

1. Management of interruptions Freertos manages system interrupts by manipulating BASEPRI registers, and the management priority is defined in the header file FreeRTOSConfig.h #define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY    5 Setting the maximum priority that FreeRTOS can manage does not belong to the FreeRTOS pipeline, and interrupt ...

Posted by Warmach on Sat, 18 Sep 2021 19:26:01 -0700

Serial DCB Parameter Meaning--WIN32 API Serial Port

DCB structure must be used when programming serial port with WIN32 API. First, first, the DCB structure typedef struct _DCB { DWORD DCBlength; DWORD BaudRate; DWORD fBinary: 1; DWORD fParity: 1; DWORD fOutxCtsFlow:1; DWORD fOutxDsrFlow:1; ...

Posted by roflpwnt on Wed, 15 Sep 2021 16:24:57 -0700