portENTER_CRITICAL explaination

gibson12345
Posts: 58
Joined: Wed Jul 17, 2019 11:45 pm

portENTER_CRITICAL explaination

Postby gibson12345 » Tue Oct 08, 2019 2:03 am

Hey everyone,

trying to sort out a situation where I need to enter a critical section and trying to determine how the functionality within freeRTOS works. portENTER_CRITICAL is the function I get pointed to which points to vTaskEnterCritical. Both require a "mux" but I'm struggling to understand exactly what a "mux" is. Could someone offer some insight or explanation?

Cheers,
Gibson

ESP_Dazz
Posts: 308
Joined: Fri Jun 02, 2017 6:50 am

Re: portENTER_CRITICAL explaination

Postby ESP_Dazz » Tue Oct 08, 2019 6:33 am

The mux used in portENTER_CRITICAL is actually a spinlock. A spinlock is required in order to prevent multiple CPUs from accessing the same resource concurrently (e.g. a variable, struct, or set of registers).

You can use a mutex spinlock as follows:

Code: Select all

#include <stdio.h>
static portMUX_TYPE my_mutex;
int my_resource = 0;

void app_main()
{
	vPortCPUInitializeMutex(&my_mutex);
	portENTER_CRITICAL(&my_mutex);
	//Access your resource here.
	my_resource++;
	portEXIT_CRITICAL(&my_mutex);
}
You can also initialize the mutex as such:

Code: Select all

static portMUX_TYPE my_mutex = portMUX_INITIALIZER_UNLOCKED;

jhmluna
Posts: 5
Joined: Wed Aug 26, 2020 1:39 pm

Re: portENTER_CRITICAL explaination

Postby jhmluna » Wed Sep 30, 2020 7:03 pm

So, timer_spinlock_take and portENTER_CRITICAL do the same thing?

ESP_Sprite
Posts: 8921
Joined: Thu Nov 26, 2015 4:08 am

Re: portENTER_CRITICAL explaination

Postby ESP_Sprite » Fri Oct 02, 2020 12:16 pm

jhmluna wrote:
Wed Sep 30, 2020 7:03 pm
So, timer_spinlock_take and portENTER_CRITICAL do the same thing?
Not entirely in implementation, as the timer function uses a spinlock that is embedded in the timer object, while portENTER_CRITICAL needs you to provide your own spinlock. The effect is the same, however.

Who is online

Users browsing this forum: Baidu [Spider] and 127 guests