当前位置:网站首页>What is the use of entering the critical point? How to realize STM32 single chip microcomputer?
What is the use of entering the critical point? How to realize STM32 single chip microcomputer?
2022-07-06 08:01:00 【Infinite MCU programming】
Hello everyone , I am boundless .
Once I was broadcasting live to internal students , A few friends asked me , Why enter the critical , What's the use of criticality ?
At that time, I didn't expect a good explanation , Today, let me give you a few examples to answer .
If any boss thinks I'm wrong, please talk privately and I'll correct it , Don't secretly spray me in the comment area , Can't I change it yet .
Enter critical and exit critical , My first contact was in ucos System , At that time, I also felt that this professional term was awesome and complicated .
When I finish talking , You'll find it's actually quite low.
Entering the critical point is to shut down the MCU and interrupt , Exit critical It is to resume the interruption of single chip microcomputer , Remember, it's best to recover , Not open , Because before entering the critical point, the total interruption of MCU may not be on .
Then why enter the critical ? What's the role ?
Let's suppose a scenario :
Let's look at this piece of code .
Suppose our program runs to 12 That's ok , That is to say a = 0 The location of ,*p The value of must be equal to 2 Right? ?
Suddenly a timer interrupts , Then in the timer interrupt handler , We did p++.
After execution, return to the main program to continue execution , That is to say, I will implement 13 Line code , This is the time *p Guess the value of ?
you 're right , Definitely not 2, It is 3.
Obviously, the condition judgment is 2, Finally, the value becomes 3, such bug It's estimated that it can make you cry .
At this time, entering the critical point is very stable , It can be changed to the following code .
STM32 Unlike 51 SCM is so direct EA=0 You can turn off the total interrupt , But through __get_PRIMASK and __set_PRIMASK To do it , You can also use it __disable_irq and __enable_irq.
Specifically, you can search in the project , Read notes .
Every single chip microcomputer turns off the total interrupt in a different way , So there is also a difference between entering the critical code and exiting the critical code .
You just need to remember The essence is to shut down and interrupt , After executing the procedure , Just restore the total interruption .
Don't worry too much about how to switch when the single chip microcomputer is always interrupted , You can find it on the Internet .
Then continue to talk about our above program , A lot of people would say , I avoid this problem when writing programs , Not in the timer right p Just operate the pointer ?
If you are doing some big projects , Almost impossible to avoid , For example, our queue algorithm .
We will receive the data in the serial port interrupt , Put the data in the queue , Then analyze in the main function .
After using the queue , The stability of data transmission can be greatly improved , Even if the data transmission is fast , There is a large amount of data, and there will be no packet loss .
Let's take a look at the listing function of the queue algorithm .
such , If you don't use a pointer , It is almost impossible to achieve , Even the flexibility and portability are not high .
Just imagine , If this kind of pointer is frequently operated in the main function and interrupt , Without criticality, the program is easy to crash due to abnormal pointer pointing or program logic problems caused by data disorder .
Of course , In addition to protecting global variables 、 Array 、 Structure and other data are not bad, except , It can also be hardware data , such as IO、SCI、SPI、flash.
Of course ,RTOS Maybe it's more complicated , I won't explain it here , Just understand the essence .
边栏推荐
- 使用 BR 备份 TiDB 集群数据到兼容 S3 的存储
- Type of data in energy dashboard
- 从 TiDB 集群迁移数据至另一 TiDB 集群
- 【Redis】NoSQL数据库和redis简介
- In the era of digital economy, how to ensure security?
- [count] [combined number] value series
- P3047 [usaco12feb]nearby cows g (tree DP)
- Machine learning - decision tree
- 【云原生】手把手教你搭建ferry开源工单系统
- Sanzi chess (C language)
猜你喜欢
"Designer universe" Guangdong responds to the opinions of the national development and Reform Commission. Primary school students incarnate as small community designers | national economic and Informa
Nacos Development Manual
NFT smart contract release, blind box, public offering technology practice -- jigsaw puzzle
08- [istio] istio gateway, virtual service and the relationship between them
Wireshark grabs packets to understand its word TCP segment
指针和数组笔试题解析
"Designer universe": "benefit dimension" APEC public welfare + 2022 the latest slogan and the new platform will be launched soon | Asia Pacific Financial Media
File upload of DVWA range
[untitled]
Solution: système de surveillance vidéo intelligent de patrouille sur le chantier
随机推荐
23. Update data
Transformer principle and code elaboration
Leetcode question brushing record | 203_ Remove linked list elements
49. Sound card driven article collection
24. Query table data (basic)
数据治理:误区梳理篇
xpath中的position()函数使用
HTTP cache, forced cache, negotiated cache
Solution: intelligent site intelligent inspection scheme video monitoring system
1. Color inversion, logarithmic transformation, gamma transformation source code - miniopencv from zero
MySQL view tablespace and create table statements
CAD ARX gets the current viewport settings
It's hard to find a job when the industry is in recession
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
MFC sends left click, double click, and right click messages to list controls
上线APS系统,破除物料采购计划与生产实际脱钩的难题
Helm install Minio
Flash return file download
Binary tree creation & traversal
Analysis of Top1 accuracy and top5 accuracy examples