STM32F103 register mode turns on the LED water flow lamp

Experimental requirements: build the circuit with STM32 minimum system core board (STM32F103C8T6) + panel board + 3 red, green and blue LEDs, use GPIOB, GPIOC and GPIOD to control the LED lights, flash in turn, and the interval is 1 second. 1) Write the program design idea, including the register address and detailed parameters of GPIOx port; 2 ...

Posted by Stegs on Sun, 24 Oct 2021 07:53:58 -0700

Based on assembly and C language, STM32 water lamp flashes in turn

catalogue 1, Initialization 1. Address mapping and register mapping 2. Wiring 3. Program download 2, Implementation of water lamp with C language register   3, Assembly language implementation of water lamp   4, Experience   1, Initialization 1. Address mapping and register mapping Bus base address Bus nameBus base ad ...

Posted by stiduck on Sat, 23 Oct 2021 20:13:39 -0700

From understanding serial port to serial communication

catalogue 1, Serial port protocol and RS-232 standard 2, TTL level 3, RS232 level 4, Principle of USB/TTL to 232 "module (taking CH340 chip module as an example) 5, Using stm32cubeMX to generate project and burn HEX files through serial port 6, Serial communication 7, Summary 8, References 1, Serial port protocol and RS-232 stand ...

Posted by haroon on Sat, 23 Oct 2021 07:31:43 -0700

STM32F103C8T6 realizes water lamp (C language)

1, Experimental principle 1.1 stm32f103c8t6 introduction STM32F103C8T6 is a 32-bit microcontroller based on Cortex-M3 core launched by St. the hardware is packaged with LQFP48 and belongs to STM32 series of microcontrollers of ST company. 1.2 stm32f103c8t6 lighting principle of running water lamp Registers can store data and instructions, and ...

Posted by bav on Thu, 21 Oct 2021 20:41:29 -0700

STM32F103 register mode turns on the LED water flow lamp

1, Register introduction Register, according to Baidu Encyclopedia, register is an integral part of the CPU. Registers are high-speed storage components with limited storage capacity. They can be used to temporarily store instructions, data and addresses. Generally speaking, registers store things. What we store is just from our objective thin ...

Posted by hmogan on Thu, 21 Oct 2021 20:09:14 -0700

STM32F103C8T uses register mode to turn on the water flow lamp

1, Initialization settings of GPIO port: clock configuration, I / O mode setting and maximum rate setting      1. Because the pins to be operated by the water flow lamp are all on the GPIO port, it belongs to the AHB bus according to the system structure diagram, so the reset and time control of the port to be used are ...

Posted by matt1 on Tue, 19 Oct 2021 11:21:23 -0700

STM32F103 register mode turns on the LED water flow lamp

catalogue   1, STM32 register rules and IO port introduction 2, Hardware connection design 3, Software design 3.1 configure IO port     3.2 writing main functions   3.3 burning: connection between STM32 and PC 3.4 effect demonstration 4, Assembly language implementation   5, References        ...

Posted by jestaji on Tue, 19 Oct 2021 10:12:23 -0700

STM32F103C8T6 Register for LED Streaming Light

I. Preparations 1. What is a STM32 chip? STM32, literally, ST is an Italian Semiconductor, M is the abbreviation of Microelectronics, 32 stands for 32 bits. Together, STM32 is a 32-bit microcontroller developed by ST Company. In today's 32-bit controller, STM32 can be said to be the brightest star, it is spoiled, favored by engineers and ...

Posted by yaba on Tue, 19 Oct 2021 09:21:35 -0700

[MCU framework] [os layer] common function of RTX4 Middleware

Reseal RTX4 functions to fit RTX5 / FREERTOS / FREERTOS_NRF_RTC. Keil RTX is a royalty free, deterministic real-time operating system designed for ARM and Cortex-M devices. It allows you to create programs that perform multiple functions simultaneously and helps create better structured and easier to maintain applications. features Copyrigh ...

Posted by Master Zen on Mon, 18 Oct 2021 19:52:20 -0700

2021SC@SDUSC TencentOS Tiny source code analysis scheduler module I

2021SC@SDUSC 1, Scheduler * * scheduler is a program module that uses relevant scheduling algorithms to determine the current process to be executed** All schedulers have a common feature: the scheduler can distinguish between ready processes and suspended processes. The scheduler can select one of all ready processes and then activate th ...

Posted by Jewbilee on Mon, 18 Oct 2021 16:27:00 -0700