You may not know enough about spring beans

Define spring beans Bean definition in the corresponding code is the configuration meta information interface of beans defined in the Spring Framework, mainly including: Bean's class name, fully qualified name, concrete implementation classBean configuration meta information: scope, Auto Wiring, lifecycle callbackBean References: Collaborator ...

Posted by buddhika2010 on Mon, 07 Mar 2022 01:53:27 +0100

STM32F103 SPI (pit Diary)

1.SPI protocol SPI is the abbreviation of Serial Peripheral Interface. It is a high-speed, full duplex and synchronous communication bus, and only occupies four wires on the pins of the chip. They are the following four MISO – Master Input Slave Output, master equipment data input and slave equipment data output;MOSI – Master ...

Posted by Synergic on Thu, 20 Jan 2022 20:14:19 +0100

Teach you to write an RPC (SPI, registry, etc.)

In the previous two articles, we learned about the SPI mechanism in RPC and dubbo. In order to further understand the whole process of RPC call, in this article, we will implement simple SPI mechanism, zookeeper registry, load balancing and other functions. I will put the link of the source code at the end of the article. If necessary, you c ...

Posted by poseidix on Mon, 03 Jan 2022 13:26:11 +0100

Note: introduction and actual effect of simulated SPI

0x00 Preface Because it was mentioned earlier that for the relevant pin test of HC32F460, the author recently completed a simplified SPI bus according to the device, so put it on the MCU to test the effect. 0x10 introduction As an SPI simulator, he needs at least: A way of settingAn interface to view the current statusA write interfaceA rea ...

Posted by andrewb on Wed, 29 Dec 2021 07:05:40 +0100