-
Notifications
You must be signed in to change notification settings - Fork 94
/
u_port_os.h
709 lines (629 loc) · 29.5 KB
/
u_port_os.h
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
/*
* Copyright 2019-2024 u-blox
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _U_PORT_OS_H_
#define _U_PORT_OS_H_
/* Only header files representing a direct and unavoidable
* dependency between the API of this module and the API
* of another module should be included here; otherwise
* please keep #includes to your .c files. _except_, under special circumstances,
* if we want to sneak mutex debug in under-cover, see the section
* under #U_CFG_MUTEX_DEBUG that is snuck in at the very end of this
* file.
*/
/** \addtogroup __port
* @{
*/
/** @file
* @brief Porting layer for OS functions. These functions are
* thread-safe.
*/
#ifdef __cplusplus
extern "C" {
#endif
/* ----------------------------------------------------------------
* COMPILE-TIME MACROS
* -------------------------------------------------------------- */
/** Helper to make sure that lock/unlock pairs are always balanced.
*/
#define U_PORT_MUTEX_LOCK(x) { uPortMutexLock(x)
/** Helper to make sure that lock/unlock pairs are always balanced.
*/
#define U_PORT_MUTEX_UNLOCK(x) } uPortMutexUnlock(x)
/** Constants related to acquiring executable chunks of RAM memory
*/
#define U_PORT_EXECUTABLE_CHUNK_NO_FLAGS 0
#ifndef U_PORT_OS_DEBUG_PRINT_PREFIX
/** The string to prefix all debug prints from this file with:
* only used if U_PORT_OS_DEBUG_PRINT is defined. Defining
* U_PORT_OS_DEBUG_PRINT gives you some primitive printf()-style
* debug if you can't figure out which OS resource your code is
* clinging-on to.
*/
# define U_PORT_OS_DEBUG_PRINT_PREFIX "U_PORT_OS: "
#endif
#ifdef U_PORT_OS_DEBUG_PRINT
/** Macro to print out stuff on task creation. This and the other
* macros below are effective if U_PORT_OS_DEBUG_PRINT is defined and
* may be useful if you are trying to track down a resource leak:
* capture the log and load it into an editor such as Notepad++ where
* you can highlight a word, a hex address, and see if the same address
* appears later in the same log (meaning that resource was free'd),
* or not.
*
* Note that use of these macros obviously affects timing etc. and, on
* platforms such as STM32F4, may cause memory leaks themselves; do not
* use them routinely and best only use them on platforms such as Windows
* or Linux where there are few timing/memory constraints.
*/
# define U_PORT_OS_DEBUG_PRINT_TASK_CREATE(handle, pName, stackSizeBytes, priority) \
if (pName == NULL) { \
pName = ""; \
} \
uPortLog("%s+T %p \"%s\" stack %d priority %d\n", \
U_PORT_OS_DEBUG_PRINT_PREFIX, handle, pName, stackSizeBytes, priority)
/** Macro to print out stuff on task deletion.
*/
# define U_PORT_OS_DEBUG_PRINT_TASK_DELETE(handle) \
uPortLog("%s-T %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
/** Macro to print out stuff on queue creation.
*/
# define U_PORT_OS_DEBUG_PRINT_QUEUE_CREATE(handle, queueLength, itemSizeBytes) \
uPortLog("%s+Q %p length %d item size %d\n\n", \
U_PORT_OS_DEBUG_PRINT_PREFIX, handle, queueLength, itemSizeBytes)
/** Macro to print out stuff on queue deletion.
*/
# define U_PORT_OS_DEBUG_PRINT_QUEUE_DELETE(handle) \
uPortLog("%s-Q %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
/** Macro to print out stuff on mutex creation.
*/
# define U_PORT_OS_DEBUG_PRINT_MUTEX_CREATE(handle) \
uPortLog("%s+M %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
/** Macro to print out stuff on mutex deletion.
*/
# define U_PORT_OS_DEBUG_PRINT_MUTEX_DELETE(handle) \
uPortLog("%s-M %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
/** Macro to print out stuff on semaphore creation.
*/
# define U_PORT_OS_DEBUG_PRINT_SEMAPHORE_CREATE(handle, initialCount, limit) \
uPortLog("%s+S %p initial count %d limit %d\n", \
U_PORT_OS_DEBUG_PRINT_PREFIX, handle, initialCount, limit)
/** Macro to print out stuff on queue deletion.
*/
# define U_PORT_OS_DEBUG_PRINT_SEMAPHORE_DELETE(handle) \
uPortLog("%s-S %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
/** Macro to print out stuff on timer creation.
*/
# define U_PORT_OS_DEBUG_PRINT_TIMER_CREATE(handle, pName, intervalMs, periodic) \
if (pName == NULL) { \
pName = ""; \
} \
uPortLog("%s+t %p \"%s\" interval %u %s\n", \
U_PORT_OS_DEBUG_PRINT_PREFIX, handle, pName, intervalMs, \
periodic ? "periodic" : "one-shot")
/** Macro to print out stuff on timer deletion.
*/
# define U_PORT_OS_DEBUG_PRINT_TIMER_DELETE(handle) \
uPortLog("%s-t %p\n", U_PORT_OS_DEBUG_PRINT_PREFIX, handle)
#else
# define U_PORT_OS_DEBUG_PRINT_TASK_CREATE(handle, pName, stackSizeBytes, priority)
# define U_PORT_OS_DEBUG_PRINT_TASK_DELETE(handle)
# define U_PORT_OS_DEBUG_PRINT_QUEUE_CREATE(handle, queueLength, itemSizeBytes)
# define U_PORT_OS_DEBUG_PRINT_QUEUE_DELETE(handle)
# define U_PORT_OS_DEBUG_PRINT_MUTEX_CREATE(handle)
# define U_PORT_OS_DEBUG_PRINT_MUTEX_DELETE(handle)
# define U_PORT_OS_DEBUG_PRINT_SEMAPHORE_CREATE(handle, initialCount, limit)
# define U_PORT_OS_DEBUG_PRINT_SEMAPHORE_DELETE(handle)
# define U_PORT_OS_DEBUG_PRINT_TIMER_CREATE(handle, pName, intervalMs, periodic)
# define U_PORT_OS_DEBUG_PRINT_TIMER_DELETE(handle)
#endif
/* ----------------------------------------------------------------
* TYPES
* -------------------------------------------------------------- */
/* Note: see here:
* https://stackoverflow.com/questions/72415062/c-compiler-checking-of-a-typedefed-void
* for a discussion of why we should never have used void * for the
* type definitions below.
* However, we did, so please just note that it is up to the user
* to pass the correct handle type into each of the uPortOsXxx()
* functions, the compiler will not emit an error, or a warning,
* if the wrong handle type is passed.
*/
/** Mutex handle.
*/
typedef void *uPortMutexHandle_t;
/** Semaphore handle.
*/
typedef void *uPortSemaphoreHandle_t;
/** Queue handle.
*/
typedef void *uPortQueueHandle_t;
/** Task handle.
*/
typedef void *uPortTaskHandle_t;
/** Timer handle.
*/
typedef void *uPortTimerHandle_t;
typedef enum {
U_PORT_NO_EXECUTABLE_CHUNK = -1,
U_PORT_EXECUTABLE_CHUNK_INDEX_0 = 0,
} uPortChunkIndex_t;
/** For future implementations. Will likely hold
* features such as cacheable, shareable, bufferable etc.
* as typically available in MPU settings if they can be
* set during runtime.
*/
typedef uint32_t uPortExeChunkFlags_t;
/** The function signature for a timer callback.
*/
typedef void (pTimerCallback_t) (const uPortTimerHandle_t, void *);
/** The possible types of OS resource.
*/
typedef enum {
U_PORT_OS_RESOURCE_TYPE_TASK,
U_PORT_OS_RESOURCE_TYPE_QUEUE,
U_PORT_OS_RESOURCE_TYPE_MUTEX,
U_PORT_OS_RESOURCE_TYPE_SEMAPHORE,
U_PORT_OS_RESOURCE_TYPE_TIMER
} uPortOsResourceType_t;
/* ----------------------------------------------------------------
* FUNCTIONS: TASKS
* -------------------------------------------------------------- */
/** Create, and start, a task.
*
* Note: just before pFunction exits, make sure to call
* uPortTaskDelete(NULL) in order to free memory.
*
* Note: in some operating systems (e.g. Zephyr) we use a
* conditional compilation flag, U_CFG_OS_MAX_THREADS, to
* limit the maximum number of tasks that this code can create.
* If this function returns #U_ERROR_COMMON_NO_MEMORY you might
* need to set a bigger value for U_CFG_OS_MAX_THREADS in your
* build. If you cannot find U_CFG_OS_MAX_THREADS in the file
* u_cfg_os_platform_specific.h for your platform then this
* limitation is not relevant to you.
*
* @param[in] pFunction the function that forms the task.
* @param[in] pName a null-terminated string naming the task,
* may be NULL.
* @param stackSizeBytes the number of bytes of memory to dynamically
* allocate for stack.
* @param[in] pParameter a pointer that will be passed to pFunction
* when the task is started.
* The thing at the end of this pointer must be
* there for the lifetime of the task, it is
* not copied. May be NULL.
* @param priority the priority at which to run the task,
* the meaning of which is platform dependent.
* @param[out] pTaskHandle a place to put the handle of the created
* task.
* @return zero on success else negative error code.
*/
int32_t uPortTaskCreate(void (*pFunction)(void *),
const char *pName,
size_t stackSizeBytes,
void *pParameter,
int32_t priority,
uPortTaskHandle_t *pTaskHandle);
/** Delete the given task.
*
* @param taskHandle the handle of the task to be deleted.
* Use NULL to delete the current task.
* It is often the case in embedded
* systems that only the current task can
* delete itself, hence use of anything
* other than NULL for taskHandle may not
* be permitted, depending on the underlying
* RTOS. Note also that the task may not
* actually be deleted until the idle task
* runs; this can be effected by calling
* uPortTaskBlock(U_CFG_OS_YIELD_MS).
* @return zero on success else negative error code.
*/
int32_t uPortTaskDelete(const uPortTaskHandle_t taskHandle);
/** Check if the current task handle is equal to the given
* task handle.
*
* @param taskHandle the task handle to check against.
* @return true if the task handle pointed to by
* pTaskHandle is the current task handle,
* otherwise false.
*/
bool uPortTaskIsThis(const uPortTaskHandle_t taskHandle);
/** Block the current task for a time. Note that this will only
* yield to another task if delayMs is longer than one tick: for
* this specify a delay of at least U_CFG_OS_YIELD_MS.
*
* @param delayMs the amount of time to block for in milliseconds.
*/
void uPortTaskBlock(int32_t delayMs);
/** Get the stack high watermark, the minimum amount
* of stack free, in bytes, for a given task.
*
* @param taskHandle the task handle to check. If NULL is given
* the handle of the current task is used.
* @return the minimum amount of stack free for the
* lifetime of the task in bytes, else
* negative error code.
*/
int32_t uPortTaskStackMinFree(const uPortTaskHandle_t taskHandle);
/** Get the current task handle.
* It is NOT a requirement that this API is implemented:
* where it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED
* should be returned.
*
* @param[out] pTaskHandle a place to put the task handle; cannot
* be NULL.
* @return zero on success else negative error code.
*/
int32_t uPortTaskGetHandle(uPortTaskHandle_t *pTaskHandle);
/* ----------------------------------------------------------------
* FUNCTIONS: QUEUES
* -------------------------------------------------------------- */
/** Create a queue.
*
* Note: some platforms place restrictions on itemSizeBytes; for
* instance, ThreadX, used on the later STM32Cube platforms, has a
* limit of 64 bytes.
*
* @param queueLength the maximum length of the queue in units
* of itemSizeBytes.
* @param itemSizeBytes the size of each item on the queue.
* @param[out] pQueueHandle a place to put the handle of the queue.
* @return zero on success else negative error code.
*/
int32_t uPortQueueCreate(size_t queueLength,
size_t itemSizeBytes,
uPortQueueHandle_t *pQueueHandle);
/** Delete the given queue.
*
* @param queueHandle the handle of the queue to be deleted.
* @return zero on success else negative error code.
*/
int32_t uPortQueueDelete(const uPortQueueHandle_t queueHandle);
/** Send to the given queue. If the queue is full this function
* will block until room is available.
*
* @param queueHandle the handle of the queue.
* @param[in] pEventData pointer to the data to send. The data will
* be copied into the queue and hence can be
* destroyed by the caller once this functions
* returns.
* @return zero on success else negative error code.
*/
int32_t uPortQueueSend(const uPortQueueHandle_t queueHandle,
const void *pEventData);
/** Send to the given queue from an interrupt. If the queue is
* full this function will return an error. Note that not all
* platforms support this function (e.g. Windows doesn't).
*
* @param queueHandle the handle of the queue.
* @param[in] pEventData pointer to the data to send. The data will
* be copied into the queue and hence can be
* destroyed by the caller once this functions
* returns.
* @return zero on success else negative error code.
*/
int32_t uPortQueueSendIrq(const uPortQueueHandle_t queueHandle,
const void *pEventData);
/** Receive from the given queue, blocking until something is
* received.
*
* @param queueHandle the handle of the queue.
* @param[out] pEventData pointer to a place to put incoming data.
* @return zero on success else negative error code.
*/
int32_t uPortQueueReceive(const uPortQueueHandle_t queueHandle,
void *pEventData);
/** Receive from the given queue from ISR. Note that not all
* platforms support this function (e.g. Windows doesn't).
*
* @param queueHandle the handle of the queue.
* @param[out] pEventData pointer to a place to put incoming data.
* @return zero on success else negative error code.
*/
int32_t uPortQueueReceiveIrq(const uPortQueueHandle_t queueHandle,
void *pEventData);
/** Try to receive from the given queue, waiting for the given
* time for something to arrive.
*
* @param queueHandle the handle of the queue.
* @param waitMs the amount of time to wait in milliseconds.
* @param[out] pEventData pointer to a place to put incoming data.
* @return zero if someting is received else negative
* error code.
*/
int32_t uPortQueueTryReceive(const uPortQueueHandle_t queueHandle,
int32_t waitMs, void *pEventData);
/** Peek the given queue; the data is copied out of the queue but
* is NOT removed from the queue. If the queue is empty
* #U_ERROR_COMMON_TIMEOUT is returned. It is NOT a requirement
* that this API is implemented: where it is not implemented
* #U_ERROR_COMMON_NOT_IMPLEMENTED should be returned.
*
* @param queueHandle the handle of the queue.
* @param[out] pEventData pointer to a place to put incoming data.
* @return zero on success else negative error code.
*/
int32_t uPortQueuePeek(const uPortQueueHandle_t queueHandle,
void *pEventData);
/** Get the number of free spaces in the given queue.
* It is NOT a requirement that this API is implemented:
* where it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED
* should be returned.
*
* @param queueHandle the handle of the queue.
* @return on success the number of spaces available,
* else negative error code.
*/
int32_t uPortQueueGetFree(const uPortQueueHandle_t queueHandle);
/* ----------------------------------------------------------------
* FUNCTIONS: MUTEXES
* -------------------------------------------------------------- */
/** Create a mutex. Note that the mutex created is NOT a recursive
* mutex, a task may only lock it once.
*
* @param[out] pMutexHandle a place to put the mutex handle.
* @return zero on success else negative error code.
*/
int32_t uPortMutexCreate(uPortMutexHandle_t *pMutexHandle);
/** Destroy a mutex. Note that it is not permitted to delete a
* mutex which is currently locked, hence it is good practice
* in any de-initialisation code to lock and then unlock a mutex
* before destroying it, just to be sure there is no asynchronous
* thing that hasn't quite finished yet.
*
* @param mutexHandle the handle of the mutex.
* @return zero on success else negative error code.
*/
int32_t uPortMutexDelete(const uPortMutexHandle_t mutexHandle);
/** Lock the given mutex, waiting until it is available if
* it is already locked Note that a lock can only be taken
* once, EVEN IF the lock attempt is from within the same task.
* In other words this is NOT a counting mutex, it is a simple
* binary mutex.
*
* @param mutexHandle the handle of the mutex.
* @return zero on success else negative error code.
*/
int32_t uPortMutexLock(const uPortMutexHandle_t mutexHandle);
/** Try to lock the given mutex, waiting up to delayMs
* if it is currently locked.
*
* @param mutexHandle the handle of the mutex.
* @param delayMs the maximum time to wait in milliseconds.
* @return zero on success else negative error code.
*/
int32_t uPortMutexTryLock(const uPortMutexHandle_t mutexHandle,
int32_t delayMs);
/** Unlock the given mutex.
*
* @param mutexHandle the handle of the mutex.
* @return zero on success else negative error code.
*/
int32_t uPortMutexUnlock(const uPortMutexHandle_t mutexHandle);
/* ----------------------------------------------------------------
* FUNCTIONS: SEMAPHORES
* -------------------------------------------------------------- */
/** Create a semaphore.
*
* @param[out] pSemaphoreHandle a place to put the semaphore handle.
* @param initialCount initial semaphore count
* @param limit maximum permitted semaphore count
* @return zero on success else negative error code
*/
int32_t uPortSemaphoreCreate(uPortSemaphoreHandle_t *pSemaphoreHandle,
uint32_t initialCount,
uint32_t limit);
/** Destroy a semaphore.
*
* @param semaphoreHandle the handle of the semaphore.
* @return zero on success else negative error code.
*/
int32_t uPortSemaphoreDelete(const uPortSemaphoreHandle_t semaphoreHandle);
/** Take the given semaphore, waiting until it is available if
* it is already taken.
*
* @param semaphoreHandle the handle of the semaphore.
* @return zero on success else negative error code.
*/
int32_t uPortSemaphoreTake(const uPortSemaphoreHandle_t semaphoreHandle);
/** Try to take the given semaphore, waiting up to delayMs
* if it is currently taken.
*
* @param semaphoreHandle the handle of the semaphore.
* @param delayMs the maximum time to wait in milliseconds.
* @return zero on success else negative error code.
*/
int32_t uPortSemaphoreTryTake(const uPortSemaphoreHandle_t semaphoreHandle,
int32_t delayMs);
/** Give a semaphore, unless the semaphore is already at its maximum permitted
* count.
*
* @param semaphoreHandle the handle of the semaphore.
* @return zero on success else negative error code.
*/
int32_t uPortSemaphoreGive(const uPortSemaphoreHandle_t semaphoreHandle);
/** Give a semaphore from interrupt, unless the semaphore is already at its
* maximum permitted count. Note that not all platforms support this
* function (e.g. Windows, Linux and later STM32Cube platforms where ThreadX
* is the default RTOS do not).
*
* @param semaphoreHandle the handle of the semaphore.
* @return zero on success else negative error code.
*/
int32_t uPortSemaphoreGiveIrq(const uPortSemaphoreHandle_t semaphoreHandle);
/* ----------------------------------------------------------------
* FUNCTIONS: TIMERS
* -------------------------------------------------------------- */
/** Create a timer. uPortTimerStart() must be called to start the timer
* once it has been successfully created. It is good practice to create
* all required timers at initialisation and delete them on exit, only
* starting/stopping them inbetween, to avoid potential race conditions
* with timer creation/deletion and timer expiries.
* IMPORTANT: there is a single timer task/queue and the execution of a timer
* callback will take time in that queue, potentially delaying the execution
* of the next timer callback. The task/queue is implemented as a separate
* entity to the rest of the OS, so it doesn't take time away from a
* customer's timer functions, but the "ubxlib" users of this timer API
* should respect each others' need for accurate timer callback execution
* by keeping their callbacks short in duration and certainly never blocking.
* It is NOT currently a requirement that this API is implemented: where
* it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED should be returned.
*
* @param[out] pTimerHandle a place to put the timer handle.
* @param[in] pName a name for the timer, used for debug
* purposes only; should be a null-terminated
* string, may be NULL. The value will be
* copied.
* @param[in] pCallback the timer callback routine. The stack size
* of the context within which the callback
* is called will be specific to your OS and
* configured in your OS; should not be NULL.
* @param[in] pCallbackParam a parameter that will be provided to the
* timer callback routine as its second parameter
* when it is called; may be NULL.
* @param intervalMs the time interval in milliseconds.
* @param periodic if true the timer will be restarted after it
* has expired, else the timer will be one-shot.
* @return zero on success else negative error code.
*/
int32_t uPortTimerCreate(uPortTimerHandle_t *pTimerHandle,
const char *pName,
pTimerCallback_t *pCallback,
void *pCallbackParam,
uint32_t intervalMs,
bool periodic);
/** Destroy a timer. If the timer is already running it will be stopped
* and then destroyed. It is NOT currently a requirement that this API is
* implemented: where it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED
* should be returned.
*
* @param timerHandle the handle of the timer.
* @return zero on success else negative error code.
*/
int32_t uPortTimerDelete(const uPortTimerHandle_t timerHandle);
/** Start a timer. If the timer is already running it is restarted.
* It is NOT currently a requirement that this API is implemented: where it
* is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED should be returned.
*
* @param timerHandle the handle of the timer.
* @return zero on success else negative error code.
*/
int32_t uPortTimerStart(const uPortTimerHandle_t timerHandle);
/** Stop a timer. If the timer is not running this function returns
* success. It is NOT currently a requirement that this API is
* implemented: where it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED
* should be returned.
*
* @param timerHandle the handle of the timer.
* @return zero on success else negative error code.
*/
int32_t uPortTimerStop(const uPortTimerHandle_t timerHandle);
/** Change a timer interval. It is OS dependent as to whether the
* interval of a timer that is currently running is changed by this
* or not; it is wise to stop the timer first if you care about
* that. It is NOT currently a requirement that this API is implemented:
* where it is not implemented #U_ERROR_COMMON_NOT_IMPLEMENTED should be
* returned. If the other timer API functions are supported then this
* one must also be supported.
*
* @param timerHandle the handle of the timer.
* @param intervalMs the new time interval in milliseconds.
* @return zero on success else negative error code.
*/
int32_t uPortTimerChange(const uPortTimerHandle_t timerHandle,
uint32_t intervalMs);
/* ----------------------------------------------------------------
* FUNCTIONS: ACQUIRING EXECUTABLE MEMORY
* -------------------------------------------------------------- */
/** Create or prepare a chunk of RAM for executing for example a
* library loaded by lib_common functionality.
*
* @param[in] pChunkToMakeExecutable for implementations where a chunk's
* permissions can be dynamically changed.
* Set to NULL if not used.
* @param[in,out] pSize for implementations where a chunk's
* size needs to be given.
* For all implementations returns size of
* chunk.
* @param flags for implementations where a chunk's
* MPU flags can be set at runtime.
* Set to #U_PORT_EXECUTABLE_CHUNK_NO_FLAGS
* if not used.
* @param index for implementations where a chunk
* can only be specified at compile time.
* Index allows the user to specify several
* chunks at compile time.
* Set to #U_PORT_NO_EXECUTABLE_CHUNK if not used.
* @return pointer to memory area or NULL if failed
*/
void *uPortAcquireExecutableChunk(void *pChunkToMakeExecutable,
size_t *pSize,
uPortExeChunkFlags_t flags,
uPortChunkIndex_t index);
/* ----------------------------------------------------------------
* FUNCTIONS: DEBUGGING/MONITORING
* -------------------------------------------------------------- */
/** Get the number of OS resources (tasks, queues, semaphores, mutexes
* or timers) currently allocated; this may be used as a basic check for
* heap monitoring.
*
* If this function is not implemented a #U_WEAK implementation
* provided in u_port_resource.c will return zero.
*
* @return the number of OS resources (tasks, queues, semaphores,
* mutexes or timers) currently in use.
*/
int32_t uPortOsResourceAllocCount();
/** Used ONLY for resource accounting: this function allows the code
* to indicate that an OS resource (task, queue, semaphore, mutex or
* timer) of the given type has been created and will NEVER be destroyed.
*
* This function is implemented in the common file u_port_resource.c,
* it does not need to be implemented separately by each port.
*
* @param type the resource type.
*/
void uPortOsResourcePerpetualAdd(uPortOsResourceType_t type);
/** Get the number of resources that have been logged as "perpetual"
* by calls to uPortOsResourcePerpetualAdd(); this is ONLY intended to
* be used by the ubxlib test code.
*
* This function is implemented in the common file u_port_resource.c,
* it does not need to be implemented separately by each port.
*
* @return the number of OS resources (tasks, queues, semaphores,
* mutexes or timers) that have been created that will
* not destroyed.
*/
int32_t uPortOsResourcePerpetualCount();
#ifdef __cplusplus
}
#endif
/* ----------------------------------------------------------------
* INCLUDE FOR U_CFG_MUTEX_DEBUG
* -------------------------------------------------------------- */
/* This is included down here as we (a) need it to be brought into
* everywhere that the OS port functions are called, (b) it needs
* the types above and (c) we don't want its macros to modify the
* function prototypes above.
*/
#ifdef U_CFG_MUTEX_DEBUG
# include "u_mutex_debug.h"
#endif
/** @}*/
#endif // _U_PORT_OS_H_
// End of file