-
Notifications
You must be signed in to change notification settings - Fork 12
/
equeue_freertos.c
59 lines (43 loc) · 1.18 KB
/
equeue_freertos.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Implementation for the mbed library
* https://github.com/mbedmicro/mbed
*
* Copyright (c) 2016 Christopher Haster
* Distributed under the MIT license
*/
#include "equeue_platform.h"
#if defined(EQUEUE_PLATFORM_FREERTOS)
#include "task.h"
// Ticker operations
unsigned equeue_tick(void) {
return xTaskGetTickCountFromISR() * portTICK_PERIOD_MS;
}
// Mutex operations
int equeue_mutex_create(equeue_mutex_t *m) { return 0; }
void equeue_mutex_destroy(equeue_mutex_t *m) { }
void equeue_mutex_lock(equeue_mutex_t *m) {
*m = taskENTER_CRITICAL_FROM_ISR();
}
void equeue_mutex_unlock(equeue_mutex_t *m) {
taskEXIT_CRITICAL_FROM_ISR(*m);
}
// Semaphore operations
int equeue_sema_create(equeue_sema_t *s) {
s->handle = xSemaphoreCreateBinaryStatic(&s->buffer);
return s->handle ? 0 : -1;
}
void equeue_sema_destroy(equeue_sema_t *s) {
vSemaphoreDelete(s->handle);
}
void equeue_sema_signal(equeue_sema_t *s) {
xSemaphoreGiveFromISR(s->handle, NULL);
}
bool equeue_sema_wait(equeue_sema_t *s, int ms) {
if (ms < 0) {
ms = portMAX_DELAY;
} else {
ms = ms / portTICK_PERIOD_MS;
}
return xSemaphoreTake(s->handle, ms);
}
#endif