NimBLE-Arduino 2.2.3
Loading...
Searching...
No Matches
nimble_npl_os.h
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20#ifndef _NIMBLE_NPL_OS_H_
21#define _NIMBLE_NPL_OS_H_
22#include "nimble/porting/nimble/include/syscfg/syscfg.h"
23
24#if CONFIG_NIMBLE_STACK_USE_MEM_POOLS
25
26#include <assert.h>
27#include <stdint.h>
28#include <string.h>
29#include "freertos/FreeRTOS.h"
30#include "freertos/queue.h"
31#include "freertos/semphr.h"
32#include "freertos/task.h"
33#include "freertos/timers.h"
34#include "esp_timer.h"
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40#ifndef ARRAY_SIZE
41#define ARRAY_SIZE(array) \
42 (sizeof(array) / sizeof((array)[0]))
43#endif
44
45#ifdef ESP_PLATFORM
46extern int ets_printf(const char *fmt, ...);
47#else
48#define ets_printf printf
49#define IRAM_ATTR
50#define NIMBLE_CFG_CONTROLLER 1
51#endif
52
53#define PLATFORM_BLE_LL_ASSERT(con) \
54 do{ \
55 if(!(con)) { \
56 ets_printf("assertion:%s\n",#con); \
57 ets_printf("line:%d,function:%s\n", __LINE__, __func__);\
58 assert(0); \
59 } \
60 }while(0)
61
62#define BLE_NPL_OS_ALIGNMENT (4)/*ble_npl_get_os_alignment()*/
63
64#define BLE_NPL_TIME_FOREVER ble_npl_get_time_forever()
65
66/* This should be compatible with TickType_t */
67typedef uint32_t ble_npl_time_t;
68typedef int32_t ble_npl_stime_t;
69
70struct ble_npl_event;
71typedef void ble_npl_event_fn(struct ble_npl_event *ev);
72
73struct ble_npl_event {
74 void *event;
75};
76
77struct ble_npl_eventq {
78 void *eventq;
79};
80
81struct ble_npl_callout {
82 void *co;
83};
84
85struct ble_npl_mutex {
86 void *mutex;
87};
88
89struct ble_npl_sem {
90 void *sem;
91};
92
93/*
94 * Simple APIs are just defined as static inline below, but some are a bit more
95 * complex or require some global state variables and thus are defined in .c
96 * file instead and static inline wrapper just calls proper implementation.
97 * We need declarations of these functions and they are defined in header below.
98 */
99#include "npl_freertos.h"
100
101struct npl_funcs_t {
102 bool (*p_ble_npl_os_started)(void);
103 void *(*p_ble_npl_get_current_task_id)(void);
104 void (*p_ble_npl_eventq_init)(struct ble_npl_eventq *);
105 void (*p_ble_npl_eventq_deinit)(struct ble_npl_eventq *);
106 struct ble_npl_event * (*p_ble_npl_eventq_get)(struct ble_npl_eventq *, ble_npl_time_t);
107 void (*p_ble_npl_eventq_put)(struct ble_npl_eventq *, struct ble_npl_event *);
108 void (*p_ble_npl_eventq_remove)(struct ble_npl_eventq *, struct ble_npl_event *);
109 void (*p_ble_npl_event_run)(struct ble_npl_event *);
110 bool (*p_ble_npl_eventq_is_empty)(struct ble_npl_eventq *);
111 void (*p_ble_npl_event_init)(struct ble_npl_event *, ble_npl_event_fn *, void *);
112 void (*p_ble_npl_event_deinit)(struct ble_npl_event *);
113 void (*p_ble_npl_event_reset)(struct ble_npl_event *);
114 bool (*p_ble_npl_event_is_queued)(struct ble_npl_event *);
115 void * (*p_ble_npl_event_get_arg)(struct ble_npl_event *);
116 void (*p_ble_npl_event_set_arg)(struct ble_npl_event *, void *);
117 ble_npl_error_t (*p_ble_npl_mutex_init)(struct ble_npl_mutex *);
118 ble_npl_error_t (*p_ble_npl_mutex_deinit)(struct ble_npl_mutex *);
119 ble_npl_error_t (*p_ble_npl_mutex_pend)(struct ble_npl_mutex *, ble_npl_time_t);
120 ble_npl_error_t (*p_ble_npl_mutex_release)(struct ble_npl_mutex *);
121 ble_npl_error_t (*p_ble_npl_sem_init)(struct ble_npl_sem *, uint16_t);
122 ble_npl_error_t (*p_ble_npl_sem_deinit)(struct ble_npl_sem *);
123 ble_npl_error_t (*p_ble_npl_sem_pend)(struct ble_npl_sem *, ble_npl_time_t);
124 ble_npl_error_t (*p_ble_npl_sem_release)(struct ble_npl_sem *);
125 uint16_t (*p_ble_npl_sem_get_count)(struct ble_npl_sem *);
126 int (*p_ble_npl_callout_init)(struct ble_npl_callout *, struct ble_npl_eventq *, ble_npl_event_fn *, void *);
127 ble_npl_error_t (*p_ble_npl_callout_reset)(struct ble_npl_callout *, ble_npl_time_t);
128 void (*p_ble_npl_callout_stop)(struct ble_npl_callout *);
129 void (*p_ble_npl_callout_deinit)(struct ble_npl_callout *);
130 void (*p_ble_npl_callout_mem_reset)(struct ble_npl_callout *);
131 bool (*p_ble_npl_callout_is_active)(struct ble_npl_callout *);
132 ble_npl_time_t (*p_ble_npl_callout_get_ticks)(struct ble_npl_callout *);
133 uint32_t (*p_ble_npl_callout_remaining_ticks)(struct ble_npl_callout *, ble_npl_time_t);
134 void (*p_ble_npl_callout_set_arg)(struct ble_npl_callout *, void *);
135 uint32_t (*p_ble_npl_time_get)(void);
136 ble_npl_error_t (*p_ble_npl_time_ms_to_ticks)(uint32_t ms, ble_npl_time_t *);
137 ble_npl_error_t (*p_ble_npl_time_ticks_to_ms)(ble_npl_time_t, uint32_t *);
138 ble_npl_time_t (*p_ble_npl_time_ms_to_ticks32)(uint32_t);
139 uint32_t (*p_ble_npl_time_ticks_to_ms32)(ble_npl_time_t);
140 void (*p_ble_npl_time_delay)(ble_npl_time_t);
141#ifdef ESP_PLATFORM
142 void (*p_ble_npl_hw_set_isr)(int, uint32_t);
143#else
144 void (*p_ble_npl_hw_set_isr)(int, void (*addr)(void));
145#endif
146 uint32_t (*p_ble_npl_hw_enter_critical)(void);
147 void (*p_ble_npl_hw_exit_critical)(uint32_t);
148 uint32_t (*p_ble_npl_get_time_forever)(void);
149 uint8_t (*p_ble_npl_hw_is_in_critical)(void);
150};
151
152extern struct npl_funcs_t *npl_funcs;
153
154static inline bool
155ble_npl_os_started(void)
156{
157 return npl_funcs->p_ble_npl_os_started();
158}
159
160static inline void *
161ble_npl_get_current_task_id(void)
162{
163 return npl_funcs->p_ble_npl_get_current_task_id();
164}
165
166static inline void
167ble_npl_eventq_init(struct ble_npl_eventq *evq)
168{
169 return npl_funcs->p_ble_npl_eventq_init(evq);
170}
171
172static inline void
173ble_npl_eventq_deinit(struct ble_npl_eventq *evq)
174{
175 return npl_funcs->p_ble_npl_eventq_deinit(evq);
176}
177
178static inline struct ble_npl_event *
179ble_npl_eventq_get(struct ble_npl_eventq *evq, ble_npl_time_t tmo)
180{
181 return npl_funcs->p_ble_npl_eventq_get(evq, tmo);
182}
183
184static inline void
185ble_npl_eventq_put(struct ble_npl_eventq *evq, struct ble_npl_event *ev)
186{
187 return npl_funcs->p_ble_npl_eventq_put(evq, ev);
188}
189
190static inline void
191ble_npl_eventq_remove(struct ble_npl_eventq *evq, struct ble_npl_event *ev)
192{
193 return npl_funcs->p_ble_npl_eventq_remove(evq, ev);
194}
195
196static inline void
197ble_npl_event_run(struct ble_npl_event *ev)
198{
199 return npl_funcs->p_ble_npl_event_run(ev);
200}
201
202static inline bool
203ble_npl_eventq_is_empty(struct ble_npl_eventq *evq)
204{
205 return npl_funcs->p_ble_npl_eventq_is_empty(evq);
206}
207
208static inline void
209ble_npl_event_init(struct ble_npl_event *ev, ble_npl_event_fn *fn,
210 void *arg)
211{
212 return npl_funcs->p_ble_npl_event_init(ev, fn, arg);
213}
214
215static inline bool
216ble_npl_event_is_queued(struct ble_npl_event *ev)
217{
218 return npl_funcs->p_ble_npl_event_is_queued(ev);
219}
220
221static inline void *
222ble_npl_event_get_arg(struct ble_npl_event *ev)
223{
224 return npl_funcs->p_ble_npl_event_get_arg(ev);
225}
226
227static inline void
228ble_npl_event_set_arg(struct ble_npl_event *ev, void *arg)
229{
230 return npl_funcs->p_ble_npl_event_set_arg(ev, arg);
231}
232
233static inline ble_npl_error_t
234ble_npl_mutex_init(struct ble_npl_mutex *mu)
235{
236 return npl_funcs->p_ble_npl_mutex_init(mu);
237}
238
239static inline ble_npl_error_t
240ble_npl_mutex_deinit(struct ble_npl_mutex *mu)
241{
242 return npl_funcs->p_ble_npl_mutex_deinit(mu);
243}
244
245static inline ble_npl_error_t
246ble_npl_mutex_pend(struct ble_npl_mutex *mu, ble_npl_time_t timeout)
247{
248 return npl_funcs->p_ble_npl_mutex_pend(mu, timeout);
249}
250
251static inline ble_npl_error_t
252ble_npl_mutex_release(struct ble_npl_mutex *mu)
253{
254 return npl_funcs->p_ble_npl_mutex_release(mu);
255}
256
257static inline ble_npl_error_t
258ble_npl_sem_init(struct ble_npl_sem *sem, uint16_t tokens)
259{
260 return npl_funcs->p_ble_npl_sem_init(sem, tokens);
261}
262
263static inline ble_npl_error_t
264ble_npl_sem_deinit(struct ble_npl_sem *sem)
265{
266 return npl_funcs->p_ble_npl_sem_deinit(sem);
267}
268
269static inline ble_npl_error_t
270ble_npl_sem_pend(struct ble_npl_sem *sem, ble_npl_time_t timeout)
271{
272 return npl_funcs->p_ble_npl_sem_pend(sem, timeout);
273}
274
275static inline ble_npl_error_t
276ble_npl_sem_release(struct ble_npl_sem *sem)
277{
278 return npl_funcs->p_ble_npl_sem_release(sem);
279}
280
281static inline uint16_t
282ble_npl_sem_get_count(struct ble_npl_sem *sem)
283{
284 return npl_funcs->p_ble_npl_sem_get_count(sem);
285}
286
287static inline int
288ble_npl_callout_init(struct ble_npl_callout *co, struct ble_npl_eventq *evq,
289 ble_npl_event_fn *ev_cb, void *ev_arg)
290{
291 return npl_funcs->p_ble_npl_callout_init(co, evq, ev_cb, ev_arg);
292}
293static inline void
294ble_npl_callout_deinit(struct ble_npl_callout *co)
295{
296 return npl_funcs->p_ble_npl_callout_deinit(co);
297}
298
299static inline ble_npl_error_t
300ble_npl_callout_reset(struct ble_npl_callout *co, ble_npl_time_t ticks)
301{
302 return npl_funcs->p_ble_npl_callout_reset(co, ticks);
303}
304
305static inline void
306ble_npl_callout_stop(struct ble_npl_callout *co)
307{
308 return npl_funcs->p_ble_npl_callout_stop(co);
309}
310
311static inline bool
312ble_npl_callout_is_active(struct ble_npl_callout *co)
313{
314 return npl_funcs->p_ble_npl_callout_is_active(co);
315}
316
317static inline ble_npl_time_t
318ble_npl_callout_get_ticks(struct ble_npl_callout *co)
319{
320 return npl_funcs->p_ble_npl_callout_get_ticks(co);
321}
322
323static inline ble_npl_time_t
324ble_npl_callout_remaining_ticks(struct ble_npl_callout *co,
325 ble_npl_time_t time)
326{
327 return npl_funcs->p_ble_npl_callout_remaining_ticks(co, time);
328}
329
330static inline void
331ble_npl_callout_set_arg(struct ble_npl_callout *co, void *arg)
332{
333 return npl_funcs->p_ble_npl_callout_set_arg(co, arg);
334}
335
336static inline ble_npl_time_t
337ble_npl_time_get(void)
338{
339 return npl_funcs->p_ble_npl_time_get();
340}
341
342static inline ble_npl_error_t
343ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks)
344{
345 return npl_funcs->p_ble_npl_time_ms_to_ticks(ms, out_ticks);
346}
347
348static inline ble_npl_error_t
349ble_npl_time_ticks_to_ms(ble_npl_time_t ticks, uint32_t *out_ms)
350{
351 return npl_funcs->p_ble_npl_time_ticks_to_ms(ticks, out_ms);
352}
353
354static inline ble_npl_time_t
355ble_npl_time_ms_to_ticks32(uint32_t ms)
356{
357 return npl_funcs->p_ble_npl_time_ms_to_ticks32(ms);
358}
359
360static inline uint32_t
361ble_npl_time_ticks_to_ms32(ble_npl_time_t ticks)
362{
363 return npl_funcs->p_ble_npl_time_ticks_to_ms32(ticks);
364}
365
366static inline void
367ble_npl_time_delay(ble_npl_time_t ticks)
368{
369 return npl_funcs->p_ble_npl_time_delay(ticks);
370}
371
372#if NIMBLE_CFG_CONTROLLER
373#ifdef ESP_PLATFORM
374static inline void
375ble_npl_hw_set_isr(int irqn, uint32_t addr)
376{
377 return npl_funcs->p_ble_npl_hw_set_isr(irqn, addr);
378}
379#else
380static inline void
381IRAM_ATTR ble_npl_hw_set_isr(int irqn, void (*addr)(void))
382{
383 return npl_funcs->p_ble_npl_hw_set_isr(irqn, addr);
384}
385#endif
386#endif
387
388//critical section
389static inline uint32_t
390ble_npl_hw_enter_critical(void)
391{
392 return npl_funcs->p_ble_npl_hw_enter_critical();
393}
394
395static inline void
396ble_npl_hw_exit_critical(uint32_t ctx)
397{
398 return npl_funcs->p_ble_npl_hw_exit_critical(ctx);
399}
400
401static inline bool ble_npl_hw_is_in_critical(void)
402{
403 return npl_funcs->p_ble_npl_hw_is_in_critical();
404}
405
406#define ble_npl_get_time_forever (*npl_funcs->p_ble_npl_get_time_forever)
407#define ble_npl_callout_mem_reset (*npl_funcs->p_ble_npl_callout_mem_reset)
408#define ble_npl_event_deinit (*npl_funcs->p_ble_npl_event_deinit)
409#define ble_npl_event_reset (*npl_funcs->p_ble_npl_event_reset)
410
411#ifdef __cplusplus
412}
413#endif
414
415#else // Not using MEM Pools
416
417#include <assert.h>
418#include <stdint.h>
419#include <string.h>
420#include "freertos/FreeRTOS.h"
421#include "freertos/queue.h"
422#include "freertos/semphr.h"
423#include "freertos/task.h"
424#include "freertos/timers.h"
425#ifdef CONFIG_BT_NIMBLE_USE_ESP_TIMER
426#include "esp_timer.h"
427#endif
428
429#ifdef __cplusplus
430extern "C" {
431#endif
432
433#define BLE_NPL_OS_ALIGNMENT 4
434
435#define BLE_NPL_TIME_FOREVER portMAX_DELAY
436
437#ifndef ESP_PLATFORM
438#define IRAM_ATTR
439#define NIMBLE_CFG_CONTROLLER 1
440#define NIMBLE_EVT_QUEUE_SIZE 4
441#else
442#define NIMBLE_EVT_QUEUE_SIZE 32
443#endif
444
445/* This should be compatible with TickType_t */
446typedef uint32_t ble_npl_time_t;
447typedef int32_t ble_npl_stime_t;
448
449struct ble_npl_event {
450 bool queued;
451 ble_npl_event_fn *fn;
452 void *arg;
453};
454
455struct ble_npl_eventq {
456 QueueHandle_t q;
457};
458
459struct ble_npl_callout {
460#if CONFIG_BT_NIMBLE_USE_ESP_TIMER
461 esp_timer_handle_t handle;
462#else
463 TimerHandle_t handle;
464#endif
465 struct ble_npl_eventq *evq;
466 struct ble_npl_event ev;
467};
468
469struct ble_npl_mutex {
470 SemaphoreHandle_t handle;
471};
472
473struct ble_npl_sem {
474 SemaphoreHandle_t handle;
475};
476
477/*
478 * Simple APIs are just defined as static inline below, but some are a bit more
479 * complex or require some global state variables and thus are defined in .c
480 * file instead and static inline wrapper just calls proper implementation.
481 * We need declarations of these functions and they are defined in header below.
482 */
483#include "npl_freertos.h"
484
485static inline bool
486ble_npl_os_started(void)
487{
488 return xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED;
489}
490
491static inline void *
492ble_npl_get_current_task_id(void)
493{
494 return xTaskGetCurrentTaskHandle();
495}
496
497static inline void
498ble_npl_eventq_init(struct ble_npl_eventq *evq)
499{
500 evq->q = xQueueCreate(NIMBLE_EVT_QUEUE_SIZE, sizeof(struct ble_npl_eventq *));
501}
502
503static inline void
504ble_npl_eventq_deinit(struct ble_npl_eventq *evq)
505{
506 vQueueDelete(evq->q);
507}
508
509static inline struct ble_npl_event *
510ble_npl_eventq_get(struct ble_npl_eventq *evq, ble_npl_time_t tmo)
511{
512 return npl_freertos_eventq_get(evq, tmo);
513}
514
515static inline void
516ble_npl_eventq_put(struct ble_npl_eventq *evq, struct ble_npl_event *ev)
517{
518 npl_freertos_eventq_put(evq, ev);
519}
520
521static inline void
522ble_npl_eventq_remove(struct ble_npl_eventq *evq, struct ble_npl_event *ev)
523{
524 npl_freertos_eventq_remove(evq, ev);
525}
526
527static inline void
528ble_npl_event_run(struct ble_npl_event *ev)
529{
530 ev->fn(ev);
531}
532
533static inline bool
534ble_npl_eventq_is_empty(struct ble_npl_eventq *evq)
535{
536 return xQueueIsQueueEmptyFromISR(evq->q);
537}
538
539static inline void
540ble_npl_event_init(struct ble_npl_event *ev, ble_npl_event_fn *fn,
541 void *arg)
542{
543 memset(ev, 0, sizeof(*ev));
544 ev->fn = fn;
545 ev->arg = arg;
546}
547
548static inline void
549ble_npl_event_deinit(struct ble_npl_event *ev)
550{
551
552}
553
554static inline bool
555ble_npl_event_is_queued(struct ble_npl_event *ev)
556{
557 return ev->queued;
558}
559
560static inline void *
561ble_npl_event_get_arg(struct ble_npl_event *ev)
562{
563 return ev->arg;
564}
565
566static inline void
567ble_npl_event_set_arg(struct ble_npl_event *ev, void *arg)
568{
569 ev->arg = arg;
570}
571
572static inline ble_npl_error_t
573ble_npl_mutex_init(struct ble_npl_mutex *mu)
574{
575 return npl_freertos_mutex_init(mu);
576}
577
578static inline ble_npl_error_t
579ble_npl_mutex_deinit(struct ble_npl_mutex *mu)
580{
581 return npl_freertos_mutex_deinit(mu);
582}
583
584static inline ble_npl_error_t
585ble_npl_mutex_pend(struct ble_npl_mutex *mu, ble_npl_time_t timeout)
586{
587 return npl_freertos_mutex_pend(mu, timeout);
588}
589
590static inline ble_npl_error_t
591ble_npl_mutex_release(struct ble_npl_mutex *mu)
592{
593 return npl_freertos_mutex_release(mu);
594}
595
596static inline ble_npl_error_t
597ble_npl_sem_init(struct ble_npl_sem *sem, uint16_t tokens)
598{
599 return npl_freertos_sem_init(sem, tokens);
600}
601
602static inline ble_npl_error_t
603ble_npl_sem_deinit(struct ble_npl_sem *sem)
604{
605 return npl_freertos_sem_deinit(sem);
606}
607
608static inline ble_npl_error_t
609ble_npl_sem_pend(struct ble_npl_sem *sem, ble_npl_time_t timeout)
610{
611 return npl_freertos_sem_pend(sem, timeout);
612}
613
614static inline ble_npl_error_t
615ble_npl_sem_release(struct ble_npl_sem *sem)
616{
617 return npl_freertos_sem_release(sem);
618}
619
620static inline uint16_t
621ble_npl_sem_get_count(struct ble_npl_sem *sem)
622{
623 return uxSemaphoreGetCount(sem->handle);
624}
625
626static inline int
627ble_npl_callout_init(struct ble_npl_callout *co, struct ble_npl_eventq *evq,
628 ble_npl_event_fn *ev_cb, void *ev_arg)
629{
630 return npl_freertos_callout_init(co, evq, ev_cb, ev_arg);
631}
632
633static inline void
634ble_npl_callout_deinit(struct ble_npl_callout *co)
635{
636 npl_freertos_callout_deinit(co);
637}
638
639static inline ble_npl_error_t
640ble_npl_callout_reset(struct ble_npl_callout *co, ble_npl_time_t ticks)
641{
642 return npl_freertos_callout_reset(co, ticks);
643}
644
645static inline void
646ble_npl_callout_stop(struct ble_npl_callout *co)
647{
648 npl_freertos_callout_stop(co);
649}
650
651static inline bool
652ble_npl_callout_is_active(struct ble_npl_callout *co)
653{
654 return npl_freertos_callout_is_active(co);
655}
656
657static inline ble_npl_time_t
658ble_npl_callout_get_ticks(struct ble_npl_callout *co)
659{
660 return npl_freertos_callout_get_ticks(co);
661}
662
663static inline uint32_t
664ble_npl_callout_remaining_ticks(struct ble_npl_callout *co,
665 ble_npl_time_t time)
666{
667 return npl_freertos_callout_remaining_ticks(co, time);
668}
669
670static inline void
671ble_npl_callout_set_arg(struct ble_npl_callout *co, void *arg)
672{
673 co->ev.arg = arg;
674}
675
676static inline uint32_t
677ble_npl_time_get(void)
678{
679 return xTaskGetTickCountFromISR();
680}
681
682static inline ble_npl_error_t
683ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks)
684{
685 return npl_freertos_time_ms_to_ticks(ms, out_ticks);
686}
687
688static inline ble_npl_error_t
689ble_npl_time_ticks_to_ms(ble_npl_time_t ticks, uint32_t *out_ms)
690{
691 return ble_npl_time_ticks_to_ms(ticks, out_ms);
692}
693
694static inline ble_npl_time_t
695ble_npl_time_ms_to_ticks32(uint32_t ms)
696{
697 return ms * configTICK_RATE_HZ / 1000;
698}
699
700static inline uint32_t
701ble_npl_time_ticks_to_ms32(ble_npl_time_t ticks)
702{
703 return ticks * 1000 / configTICK_RATE_HZ;
704}
705
706static inline void
707ble_npl_time_delay(ble_npl_time_t ticks)
708{
709 vTaskDelay(ticks);
710}
711
712#if NIMBLE_CFG_CONTROLLER
713static inline void
714ble_npl_hw_set_isr(int irqn, void (*addr)(void))
715{
716 npl_freertos_hw_set_isr(irqn, addr);
717}
718
719static inline bool
720ble_npl_hw_is_in_critical(void)
721{
722 return (uxGetCriticalNestingDepth() > 0);
723}
724#endif
725
726#ifdef ESP_PLATFORM
727extern portMUX_TYPE ble_port_mutex;
728//critical section
729static inline uint32_t
730ble_npl_hw_enter_critical(void)
731{
732 portENTER_CRITICAL(&ble_port_mutex);
733 return 0;
734}
735
736static inline void
737ble_npl_hw_exit_critical(uint32_t ctx)
738{
739 portEXIT_CRITICAL(&ble_port_mutex);
740}
741
742#else
743static inline uint32_t
744ble_npl_hw_enter_critical(void)
745{
746 vPortEnterCritical();
747 return 0;
748}
749
750static inline void
751ble_npl_hw_exit_critical(uint32_t ctx)
752{
753 (void)ctx;
754 vPortExitCritical();
755}
756#endif
757
758#ifdef __cplusplus
759}
760#endif
761
762#endif // CONFIG_NIMBLE_STACK_USE_MEM_POOLS
763
764#endif /* _NPL_H_ */