RT thread RTT SPI device driving process | LWIP + ENC28J60

Catalogue of series articles RT thread (1) add external memory to memory management RT thread (2) RTT SPI device driving process | LWIP + ENC28J60 catalogue 0 overview 0.0 references 0.1 hardware resources 0.2 software resources 0.3 RTT startup and underlying driver initialization process 1 driver writing 1.1 configure ENC28J60 inte ...

Posted by jasonbullard on Sat, 25 Sep 2021 13:29:36 +0200

[punctual atom linux serial] Chapter 64 Linux multipoint capacitance touch screen 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 [-_-] on Sat, 25 Sep 2021 12:08:29 +0200

Longqiu MPU9250 sensor is tested with ESP32 module

Introduction: The MPU9250 from Longqiu was preliminarily tested using esp32 micropathon. Key words: MPU9250, I2C, ESP32, software I2C   §01 MPU9250   there are several on hand from last semester MPU9250 sensor of Longqiu , in order to use it to do experiments in the future, the esp32 micro Python experimental board is us ...

Posted by tonypr100 on Tue, 21 Sep 2021 03:26:44 +0200

C # solve the problem of serial port data loss

C # solve the problem of serial port data loss C # serial class (SerialPort) is a new class in. NET Framework version 2.0. This class encapsulates the serial port operation, thus providing a simple method for serial port communication. However, in the actual application of serial communication, the problem of data loss will occur in the data ...

Posted by .-INSANE-. on Mon, 20 Sep 2021 15:54:24 +0200

Esp32 One + L76X GPS Module tachograph

preface Use esp32 one + GPS module + OLED small screen to make a portable low-power velocimeter 1, What is Esp32 One? Esp32 One is a development board compatible with raspberry pie pin developed by Weixue electronics based on the custom pin of Xtensa LX6 dual core processor. 2, Using hardware Esp32 One x1 L76X GPS Module x1 0.96 ...

Posted by vMan on Fri, 17 Sep 2021 00:22:39 +0200

Lesson 2 [CMSIS and standard library development] standard library CMSIS layering

Basic knowledge framework Class notes CMSIS Many peripheral manufacturers provide peripherals for Cortex kernel. The differences brought by different peripherals lead to great difficulties in software writing or transplantation. Therefore, Arm company and chip manufacturers jointly launched CMSIS standard. Its full name is Cortex Micro ...

Posted by eskick on Wed, 15 Sep 2021 22:17:34 +0200

Stm32 systick tick timer - delay function

1. STM32 systick ticking timer Systick timer is a simple timer. For ST cm3, CM4 and CM7 core chips, systick timer is available. Systick timer is often used as delay or heartbeat clock of real-time system. This can save MCU resources without wasting a timer. For example, in UCOS, time-sharing multiplexing requires a minimum timestamp. General ...

Posted by tasistro on Tue, 14 Sep 2021 05:54:02 +0200

Timer 1 outputs PWM code, plus explanation

Explain the function of PWM initialization of 32 in depth I'll post the code directly first void TIM1_PWM_Init(u16 arr, u16 psc) { GPIO_InitTypeDef GPIO_InitStructure; TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1 | RCC_APB2Periph_GPIOA, ENABLE); //E ...

Posted by newbreed65 on Mon, 13 Sep 2021 00:46:05 +0200

Java CAS Principle Analysis, Share Two Ali P7 Extremely Difficult Algorithmic Questions

The flow of CAS operations described above is not difficult. But the above instructions are not enough. Next, I will introduce a little more background knowledge. With this background knowledge, we can better understand the following content. 2. Background introduction As we all know, the CPU transmits data through bus and memory. In a mult ...

Posted by lynn897 on Sun, 12 Sep 2021 08:28:59 +0200