-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlnFreeRTOS_pp.cpp
456 lines (435 loc) · 9.23 KB
/
lnFreeRTOS_pp.cpp
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
/*
* (C) 2021 MEAN00 [email protected]
* See license file
Thin wrapper on top of FreeRTOS to be more C++ friendly
*/
#include "lnFreeRTOS_pp.h"
#include "lnIRQ.h"
#define fos_ms2tick(ms) (((ms) + portTICK_PERIOD_MS - 1) / portTICK_PERIOD_MS)
#define EVENT_INDEX 1
extern "C"
{
extern void deadEnd(int code);
void __attribute__((noinline)) __attribute__((noreturn)) do_assert(const char *a)
{
deadEnd(0xA000);
while (1)
{
asm("nop");
}
}
#define xAssert(a) \
if (!(a)) \
{ \
do_assert(#a); \
}
/**
\fn adjustStackSize
\brief return size in uint32_t adjusted for the arch
The input is in bytes
*/
static int adjustStackSize(int stackSizeInBytes)
{
configSTACK_DEPTH_TYPE systemExtraStack = 0;
#if LN_ARCH == LN_ARCH_RISCV
systemExtraStack += 28; // we have more registers to save... This is probably over kill
#endif
#if ARCH_FPU == 1
systemExtraStack += 32;
#endif
int adjustedStackDepth = (stackSizeInBytes / 4) + systemExtraStack;
return adjustedStackDepth;
}
/**
*
*/
void vApplicationMallocFailedHook(void)
{
do_assert("Malloc");
}
}
//-- Binary Semaphor --
/**
*
*/
lnBinarySemaphore::lnBinarySemaphore()
{
_handle = xSemaphoreCreateBinary();
xAssert(_handle);
}
/**
*
* @return
*/
bool lnBinarySemaphore::take()
{
return (bool)xSemaphoreTake(_handle, portMAX_DELAY);
}
/**
*
* @param timeoutMs
* @return
*/
bool lnBinarySemaphore::take(int timeoutMs)
{
int ticks = 1 + (timeoutMs * configTICK_RATE_HZ + 500) / 1000;
return (bool)xSemaphoreTake(_handle, ticks);
}
/**
*
* @param timeoutMs
* @return
*/
bool lnBinarySemaphore::tryTake()
{
return (bool)xSemaphoreTake(_handle, 0);
}
/**
*
* @return
*/
bool lnBinarySemaphore::give()
{
if (!underInterrupt)
{
xAssert(xSemaphoreGive(_handle)); // should never fail
}
else
{
BaseType_t awake;
xSemaphoreGiveFromISR(_handle, &awake); // should never fail...
portYIELD_FROM_ISR(awake); // reschedule
}
return true;
}
/**
*
* @param ms
*/
void lnDelay(uint32_t ms)
{
const TickType_t dely = 1 + (ms / portTICK_PERIOD_MS);
vTaskDelay(dely);
}
lnMutex::lnMutex()
{
_handle = xSemaphoreCreateRecursiveMutex();
}
bool lnMutex::lock()
{
xAssert(xSemaphoreTakeRecursive(_handle, portMAX_DELAY)); // should never fail
return true;
}
bool lnMutex::unlock()
{
// xAssert(
xSemaphoreGiveRecursive(_handle);
//); // should never fail
return true;
}
// Task
/**
* @brief Construct a new x Task::X Task object
*
* @param name
* @param entryPoint
* @param priority
* @param taskSize
*/
lnTask::lnTask(const char *name, int priority, int taskSize)
{
_priority = priority;
_taskSize = taskSize;
_name = name;
}
/**
*
*/
#undef xTaskCreate
void lnTask::start()
{
BaseType_t er = xTaskCreate(lnTask::Trampoline, _name, adjustStackSize(_taskSize), this, _priority, &_taskHandle);
xAssert(er == pdPASS);
}
/**
* @brief Destroy the x Taskx Task object
*
*/
lnTask::~lnTask()
{
xAssert(0);
}
/**
*
*/
lnEventGroup::lnEventGroup()
{
_handle = xEventGroupCreate();
}
/**
*
*/
lnEventGroup::~lnEventGroup()
{
// xEventGroupDelete(_handle); No delete !
xAssert(0);
_handle = 0;
}
/**
*
* @param events
*/
void lnEventGroup::setEvents(uint32_t events)
{
if (!underInterrupt)
{
xEventGroupSetBits(_handle, events);
}
else
{
xAssert(0);
/*
BaseType_t wakeUp ;
xEventGroupSetBitsFromISR(_handle,events,&wakeUp);
portYIELD_FROM_ISR(wakeUp);
*/
}
}
/**
*
* @param maskint
* @param timeout
* @return
*/
uint32_t lnEventGroup::waitEvents(uint32_t maskint, int timeout)
{
if (timeout == 0)
timeout = portMAX_DELAY - 1;
else
timeout = fos_ms2tick(timeout);
uint32_t res = xEventGroupWaitBits(_handle, maskint,
pdTRUE, // auto clear
pdFALSE, // any but
timeout);
return res;
}
/**
*
* @param maskInt
* @return
*/
uint32_t lnEventGroup::readEvents(uint32_t maskInt) // it is also cleared automatically !
{
EventBits_t ev = xEventGroupGetBits(_handle);
ev = ev & maskInt;
if (ev)
{
xEventGroupClearBits(_handle, ev); // Race ?
}
return ev;
}
//--------------------------------
/**
*
*/
#define BEGIN_LOCK() ENTER_CRITICAL()
#define END_LOCK() EXIT_CRITICAL()
#define INVALID_TASK (TaskHandle_t) - 1
lnFastEventGroup::lnFastEventGroup()
{
_value = _mask = 0;
_waitingTask = INVALID_TASK;
}
/**
*
*/
lnFastEventGroup::~lnFastEventGroup()
{
}
/**
*
*/
void lnFastEventGroup::takeOwnership()
{
_waitingTask = xTaskGetCurrentTaskHandle();
}
/**
*
* @param events
*/
#define BEGIN_LOCK() ENTER_CRITICAL()
#define END_LOCK() EXIT_CRITICAL()
void lnFastEventGroup::setEvents(uint32_t events)
{
if (underInterrupt)
{
#warning : Could we have a race here between different interrupts ? probably
_value = _value | events;
bool w = _value & _mask;
if (!w || _waitingTask == INVALID_TASK) // no need to wake up task
{
return;
}
BaseType_t awake;
vTaskNotifyGiveIndexedFromISR(_waitingTask, EVENT_INDEX, &awake);
portYIELD_FROM_ISR(awake); // reschedule
return;
}
// not under interrupt
BEGIN_LOCK();
_value = _value | events;
bool w = _value & _mask;
if (!w || _waitingTask == INVALID_TASK) // no need to wake up task
{
END_LOCK();
return;
}
END_LOCK();
xTaskNotifyGiveIndexed(_waitingTask, EVENT_INDEX);
return;
}
/**
*
* @param maskint
* @param timeout
* @return
*/
uint32_t lnFastEventGroup::waitEvents(uint32_t maskint, int timeout)
{
xAssert(_waitingTask != INVALID_TASK);
xAssert(!underInterrupt);
while (1)
{
BEGIN_LOCK();
uint32_t set = maskint & _value;
if (set)
{
_value &= ~set;
_mask = 0;
END_LOCK();
xTaskNotifyStateClearIndexed(xTaskGetCurrentTaskHandle(), EVENT_INDEX);
return set;
}
_mask = maskint;
END_LOCK();
if (timeout == -1)
timeout = 0x7fffffff;
if (pdFALSE == ulTaskNotifyTakeIndexed(EVENT_INDEX, pdTRUE, timeout)) // cleared on exit
{ // timeout
return 0;
}
// got it
BEGIN_LOCK();
set = maskint & _value;
// race can cause this to trigger ? xAssert(set);
_value &= ~set;
_mask = 0; // no need to clear waitintTask, it must be the same !
END_LOCK();
return set;
}
}
/**
*
* @param maskInt
* @return
*/
uint32_t lnFastEventGroup::readEvents(uint32_t maskInt)
{
BEGIN_LOCK();
uint32_t v = _value & maskInt;
_value &= ~maskInt;
_mask = 0;
xTaskNotifyStateClearIndexed(xTaskGetCurrentTaskHandle(), EVENT_INDEX);
END_LOCK();
return v;
}
/**
*/
bool lnCreateTask(
TaskFunction_t pxTaskCode,
const char *const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
int stackSizeInBytes, // in bytes !, // in bytes!
void *const pvParameters, UBaseType_t uxPriority)
{
if (pdPASS == xTaskCreate(pxTaskCode, pcName, adjustStackSize(stackSizeInBytes), pvParameters, uxPriority, NULL))
return true;
xAssert(0);
}
/**
* @brief
*
*/
static void lnTimerCallbackFunction(TimerHandle_t xTimer)
{
lnPeriodicTimer *t = (lnPeriodicTimer *)pvTimerGetTimerID(xTimer);
xAssert(t);
t->timerCallback();
}
/**
* @brief Construct a new ln Periodic Timer::ln Periodic Timer object
*
* @param name
* @param periodInMs
*/
lnPeriodicTimer::lnPeriodicTimer()
{
}
/**
* @brief Construct a new ln Periodic Timer::init object
*
* @param name
* @param periodInMs
*/
void lnPeriodicTimer::init(const char *name, int periodInMs)
{
_timerHandle = xTimerCreate(name, periodInMs, true, this, lnTimerCallbackFunction);
}
/**
* @brief
*
* @return true
* @return false
*/
bool lnPeriodicTimer::start()
{
xTimerStart(_timerHandle, 1);
return true;
}
/**
* @brief
*
* @return true
* @return false
*/
bool lnPeriodicTimer::restart()
{
if (underInterrupt)
{
BaseType_t wake = pdFALSE;
xTimerResetFromISR(_timerHandle, &wake);
}
else
{
xTimerReset(_timerHandle, 1);
}
return true;
}
/**
* @brief
*
* @return true
* @return false
*/
bool lnPeriodicTimer::stop()
{
xTimerStop(_timerHandle, 1);
return true;
}
/**
* @brief Destroy the ln Periodic Timer::ln Periodic Timer object
*
*/
lnPeriodicTimer::~lnPeriodicTimer()
{
}
// EOF