51 #include "hal_assert.h"
63 #define ICALL_SERVICE_CLASS_MASK 0xFFF8
71 #define ICALL_SERVICE_INSTANCE_MASK 0x0007
79 #define ICALL_SERVICE_CLASS_PRIMITIVE 0x0008
84 #define ICALL_SERVICE_CLASS_BLE 0x0010
87 #define ICALL_SERVICE_CLASS_TIMAC 0x0018
90 #define ICALL_SERVICE_CLASS_REMOTI_RTI 0x0020
93 #define ICALL_SERVICE_CLASS_REMOTI_RCN 0x0028
96 #define ICALL_SERVICE_CLASS_ZSTACK 0x0030
99 #define ICALL_SERVICE_CLASS_NPI 0x0038
102 #define ICALL_SERVICE_CLASS_BLE_MSG 0x0050
112 #define ICALL_SERVICE_CLASS_CRYPTO 0x0080
119 #define ICALL_SERVICE_CLASS_BLE_BOARD 0x0088
126 #define ICALL_SERVICE_CLASS_TIMAC_BOARD 0x0090
133 #define ICALL_SERVICE_CLASS_RADIO 0x0098
140 #define ICALL_SERVICE_CLASS_DUMMY 0x0100
148 #define ICALL_SERVICE_CLASS_DUMMY_BOARD 0x0200
153 #define ICALL_INVALID_ENTITY_ID 0xffu
158 #define ICALL_INVALID_TIMER_ID NULL
168 #define ICALL_UNDEF_DEST_ID 0xffu
172 #define ICALL_ERRNO_SUCCESS 0
175 #define ICALL_ERRNO_TIMEOUT 1
178 #define ICALL_ERRNO_NOMSG 2
185 #define ICALL_ERRNO_INVALID_SERVICE -1
191 #define ICALL_ERRNO_INVALID_FUNCTION -2
194 #define ICALL_ERRNO_INVALID_PARAMETER -3
197 #define ICALL_ERRNO_NO_RESOURCE -4
204 #define ICALL_ERRNO_UNKNOWN_THREAD -5
207 #define ICALL_ERRNO_CORRUPT_MSG -6
210 #define ICALL_ERRNO_OVERFLOW -7
213 #define ICALL_ERRNO_UNDERFLOW -8
216 #define ICALL_MSG_FORMAT_KEEP 0
222 #define ICALL_MSG_FORMAT_1ST_CHAR_TASK_ID 1
228 #define ICALL_MSG_FORMAT_3RD_CHAR_TASK_ID 2
234 #define ICALL_MSG_FORMAT_DIRECT_API_ID 3
239 #define ICALL_LITE_DIRECT_API_DONE_CMD_ID 0x42
246 #define ICALL_TIMEOUT_FOREVER 0xfffffffful
252 #ifndef ICALL_TIMEOUT_PREDEFINE
253 #define ICALL_TIMEOUT_PREDEFINE 5000
259 #define ICALL_SEMAPHORE_MODE_COUNTING 0
264 #define ICALL_SEMAPHORE_MODE_BINARY 1
270 #define ICALL_PRIMITIVE_FUNC_ENROLL 0
273 #define ICALL_PRIMITIVE_FUNC_REGISTER_APP 1
276 #define ICALL_PRIMITIVE_FUNC_MSG_ALLOC 2
279 #define ICALL_PRIMITIVE_FUNC_MSG_FREE 3
282 #define ICALL_PRIMITIVE_FUNC_MALLOC 4
285 #define ICALL_PRIMITIVE_FUNC_FREE 5
288 #define ICALL_PRIMITIVE_FUNC_SEND_MSG 6
291 #define ICALL_PRIMITIVE_FUNC_FETCH_MSG 7
294 #define ICALL_PRIMITIVE_FUNC_SEND_SERV_MSG 8
297 #define ICALL_PRIMITIVE_FUNC_FETCH_SERV_MSG 9
300 #define ICALL_PRIMITIVE_FUNC_WAIT 10
303 #define ICALL_PRIMITIVE_FUNC_SIGNAL 11
306 #define ICALL_PRIMITIVE_FUNC_ABORT 12
309 #define ICALL_PRIMITIVE_FUNC_ENABLE_INT 13
312 #define ICALL_PRIMITIVE_FUNC_DISABLE_INT 14
315 #define ICALL_PRIMITIVE_FUNC_ENABLE_MINT 15
318 #define ICALL_PRIMITIVE_FUNC_DISABLE_MINT 16
321 #define ICALL_PRIMITIVE_FUNC_REGISTER_ISR 17
324 #define ICALL_PRIMITIVE_FUNC_GET_TICKS 18
327 #define ICALL_PRIMITIVE_FUNC_SET_TIMER_MSECS 19
330 #define ICALL_PRIMITIVE_FUNC_GET_TICK_PERIOD 20
333 #define ICALL_PRIMITIVE_FUNC_GET_MAX_MILLISECONDS 21
336 #define ICALL_PRIMITIVE_FUNC_ENTITY2SERVICE 22
339 #define ICALL_PRIMITIVE_FUNC_PWR_UPD_ACTIVITY_COUNTER 23
342 #define ICALL_PRIMITIVE_FUNC_PWR_REGISTER_NOTIFY 24
345 #define ICALL_PRIMITIVE_FUNC_WAIT_MATCH 25
348 #define ICALL_PRIMITIVE_FUNC_GET_ENTITY_ID 26
351 #define ICALL_PRIMITIVE_FUNC_SET_TIMER 27
354 #define ICALL_PRIMITIVE_FUNC_STOP_TIMER 28
360 #define ICALL_PRIMITIVE_FUNC_PWR_CONFIG_AC_ACTION 29
363 #define ICALL_PRIMITIVE_FUNC_PWR_REQUIRE 30
366 #define ICALL_PRIMITIVE_FUNC_PWR_DISPENSE 31
369 #define ICALL_PRIMITIVE_FUNC_THREAD_SERVES 32
372 #define ICALL_PRIMITIVE_FUNC_PWR_IS_STABLE_XOSC_HF 33
375 #define ICALL_PRIMITIVE_FUNC_PWR_GET_TRANSITION_STATE 34
378 #define ICALL_PRIMITIVE_FUNC_CREATE_TASK 35
381 #define ICALL_PRIMITIVE_FUNC_CREATE_SEMAPHORE 36
384 #define ICALL_PRIMITIVE_FUNC_WAIT_SEMAPHORE 37
387 #define ICALL_PRIMITIVE_FUNC_SWITCH_XOSC_HF 38
390 #define ICALL_PRIMITIVE_FUNC_PWR_GET_XOSC_STARTUP_TIME 39
393 #define ICALL_PRIMITIVE_FUNC_REGISTER_ISR_EXT 40
397 #define ICALL_PRIMITIVE_FUNC_POST_SEMAPHORE 41
400 #define ICALL_PRIMITIVE_FUNC_CREATE_EVENT 42
403 #define ICALL_PRIMITIVE_FUNC_WAIT_EVENT 43
406 #define ICALL_PRIMITIVE_FUNC_POST_EVENT 44
414 #define ICALL_MSG_FUNC_GET_LOCAL_MSG_ENTITY_ID 0
421 #define ICALL_MSG_EVENT_ID Event_Id_31
445 typedef void *ICall_Semaphore;
670 #ifdef ICALL_RTOS_SEMAPHORE_API
701 #ifdef ICALL_RTOS_EVENTS_API
703 typedef struct _icall_create_event_args_t
707 } ICall_CreateEventArgs;
710 typedef struct _icall_post_event_args_t
715 } ICall_PostEventArgs;
718 typedef struct _icall_wait_event_args_t
722 uint_least32_t milliseconds;
723 } ICall_WaitEventArgs;
733 typedef struct _icall_msg_hdr_t
923 typedef uint_least32_t icall_lite_id_t;
933 uint_least32_t *pointerStack;
934 icall_lite_id_t directAPI;
935 } icall_directAPIMsg_t;
940 icall_directAPIMsg_t msg;
1028 ICall_Errno
ICall_registerApp(ICall_EntityID *entity, ICall_SyncHandle *msgSyncHdl);
1090 ICall_ServiceEnum dest,
1091 ICall_MSGFormat format,
void *msg);
1123 ICall_EntityID *dest,
1139 ICall_Errno
ICall_wait(uint_fast32_t milliseconds);
1165 ICall_EntityID *entity,
1166 ICall_SyncHandle *msgSyncHdl);
1196 ICall_EntityID dest,
1197 ICall_MSGFormat format,
1220 ICall_EntityID *dest,
1243 ICall_ServiceEnum *servId);
1519 uint_fast16_t stacksize,
size_t arg);
1521 #ifdef ICALL_RTOS_SEMAPHORE_API
1536 #ifdef ICALL_RTOS_SEMAPHORE_API
1548 #ifdef ICALL_RTOS_EVENTS_API
1556 ICall_createEvent(
void);
1565 ICall_postEvent(ICall_Event event, uint32_t events);
1580 ICall_waitEvent(ICall_Event event, uint_fast32_t milliseconds);
1583 #ifdef ICALL_RTOS_SEMAPHORE_API
1630 ICall_ServiceEnum *src,
1631 ICall_EntityID *dest,
1689 ICall_SyncHandle *msgSyncHdl)
1694 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_REGISTER_APP;
1714 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_MSG_ALLOC;
1733 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_MSG_FREE;
1780 ICall_ServiceEnum dest,
1781 ICall_MSGFormat format,
void *msg)
1785 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_SEND_SERV_MSG;
1823 ICall_EntityID *dest,
1829 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_FETCH_SERV_MSG;
1850 static ICall_Errno
ICall_wait(uint_fast32_t milliseconds)
1854 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_WAIT;
1864 static ICall_Errno
ICall_signal(ICall_SyncHandle msgSyncHdl)
1868 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_SIGNAL;
1892 ICall_EntityID *entity,
1893 ICall_SyncHandle *msgSyncHdl)
1898 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_ENROLL;
1920 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_MALLOC;
1939 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_FREE;
1958 static ICall_Errno
ICall_send(ICall_EntityID src,
1959 ICall_EntityID dest,
1960 ICall_MSGFormat format,
1965 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_SEND_MSG;
1993 ICall_EntityID *dest,
1999 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_FETCH_MSG;
2028 ICall_ServiceEnum *servId)
2033 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_ENTITY2SERVICE;
2051 HAL_ASSERT( HAL_ASSERT_CAUSE_ICALL_ABORT );
2055 args.
func = ICALL_PRIMITIVE_FUNC_ABORT;
2069 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_ENABLE_INT;
2084 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_DISABLE_INT;
2098 args.
func = ICALL_PRIMITIVE_FUNC_ENABLE_MINT;
2111 args.
func = ICALL_PRIMITIVE_FUNC_DISABLE_MINT;
2128 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_REGISTER_ISR;
2139 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_REGISTER_ISR_EXT;
2150 static uint_fast32_t
2155 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_GET_TICKS;
2164 static uint_fast32_t
2169 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_GET_TICK_PERIOD;
2180 static uint_fast32_t
2185 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_GET_MAX_MILLISECONDS;
2223 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_SET_TIMER_MSECS;
2266 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_SET_TIMER;
2287 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_STOP_TIMER;
2313 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_UPD_ACTIVITY_COUNTER;
2341 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_CONFIG_AC_ACTION;
2362 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_REQUIRE;
2383 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_DISPENSE;
2401 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_IS_STABLE_XOSC_HF;
2417 args.
func = ICALL_PRIMITIVE_FUNC_SWITCH_XOSC_HF;
2431 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_GET_XOSC_STARTUP_TIME;
2456 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_REGISTER_NOTIFY;
2475 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_PWR_GET_TRANSITION_STATE;
2498 uint_fast16_t stacksize,
size_t arg)
2503 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_CREATE_TASK;
2511 #ifdef ICALL_RTOS_SEMAPHORE_API
2522 static ICall_Semaphore
2529 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_CREATE_SEMAPHORE;
2541 #ifdef ICALL_RTOS_SEMAPHORE_API
2555 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_POST_SEMAPHORE;
2561 #ifdef ICALL_RTOS_EVENTS_API
2569 ICall_createEvent(
void)
2571 ICall_CreateEventArgs args;
2575 args.hdr.func = ICALL_PRIMITIVE_FUNC_CREATE_EVENT;
2592 ICall_postEvent(ICall_Event event, uint32_t events)
2594 ICall_PostEventArgs args;
2597 args.hdr.func = ICALL_PRIMITIVE_FUNC_POST_EVENT;
2599 args.events = events;
2616 ICall_waitEvent(ICall_Event event, uint_fast32_t milliseconds)
2618 ICall_WaitEventArgs args;
2621 args.hdr.func = ICALL_PRIMITIVE_FUNC_WAIT_EVENT;
2623 args.milliseconds = milliseconds;
2628 #ifdef ICALL_RTOS_SEMAPHORE_API
2648 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_WAIT_SEMAPHORE;
2684 ICall_ServiceEnum *src,
2685 ICall_EntityID *dest,
2691 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_WAIT_MATCH;
2717 static ICall_EntityID
2723 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_GET_ENTITY_ID;
2747 args.
hdr.
func = ICALL_PRIMITIVE_FUNC_THREAD_SERVES;
uint_fast8_t ICall_threadServes(ICall_ServiceEnum service)
Checks whether the calling thread provides the designated service.
ICall_FuncArgsHdr hdr
common arguments field to store source of the message
Definition: icall.h:522
ICall_Errno ICall_createTask(void(*entryfn)(size_t arg), uint_fast8_t priority, uint_fast16_t stacksize, size_t arg)
Creates a new RTOS task.
ICall_RemotiCmdEvent_t
Definition: icall.h:912
ICall_Semaphore sem
semaphore
Definition: icall.h:689
void * ICall_Event
Event data type.
Definition: icall.h:449
void(* ICall_TimerCback)(void *arg)
Prototype of a callback function for timer.
Definition: icall.h:473
uint32_t ICall_pwrGetXOSCStartupTime(uint_fast32_t timeUntilWakeupInMs)
uint_least32_t timeUntilWakeupInMs
field matching timeUntilWakeupInMs argument
Definition: icall.h:648
void * ICall_TimerID
Timer id data type.
Definition: icall.h:456
ICall_Errno ICall_enrollService(ICall_ServiceEnum service, ICall_ServiceFunc fn, ICall_EntityID *entity, ICall_SyncHandle *msgSyncHdl)
Registers a service entity.
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:804
void * ICall_SyncHandle
Synchronization object data type.
Definition: icall.h:443
uint_fast8_t ICall_PwrTransition
Power state transition type of the following values:
Definition: icall.h:753
ICall_Errno ICall_pwrDispense(ICall_PwrBitmap_t bitmap)
Releases power constraints and dependencies.
ICall_enrollService arguments
Definition: icall.h:876
bool incFlag
a boolean flag to indicate either increment or decrement
Definition: icall.h:614
ICall_MSGFormat format
Message format.
Definition: icall.h:515
uint_least8_t mode
semaphore mode. Either ICALL_SEMAPHORE_MODE_BINARY or ICALL_SEMAPHORE_MODE_COUNTING ...
Definition: icall.h:680
struct _icall_thread_serves_args_t ICall_ThreadServesArgs
ICall_threadServes argument
uint_least8_t localId
local entity ID
Definition: icall.h:908
struct _icall_send_args_t ICall_SendArgs
ICall_sendServiceMsg and ICall_send arguments
int intPriority
interrupt priority
Definition: icall.h:586
ICall_Errno(* ICall_ServiceFunc)(ICall_FuncArgsHdr *args)
Call dispatcher service handler function pointer type.
Definition: icall.h:873
int_fast16_t ICall_Errno
Error code data type.
Definition: icall.h:431
ICall_Errno ICall_wait(uint_fast32_t milliseconds)
Waits for a signal to the semaphore associated with the calling thread.
ICall_sendServiceMsg and ICall_send arguments
Definition: icall.h:506
ICall_pwrRegisterNotify arguments
Definition: icall.h:783
ICall_Errno ICall_pwrRequire(ICall_PwrBitmap_t bitmap)
Sets power constraints and dependencies.
struct _icall_post_semaphore_args_t ICall_PostSemaphoreArgs
ICall_postSemaphore argument
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:647
uint_fast32_t ICall_getTickPeriod(void)
Gets the tick period.
uint_least16_t stacksize
task priority as understood by underlying RTOS implementation
Definition: icall.h:666
uint_least8_t priority
task priority as understood by underlying RTOS implementation
Definition: icall.h:665
ICall_Errno ICall_enableInt(int intnum)
Enables interrupt.
ICall_signal arguments
Definition: icall.h:547
uint_least32_t ICall_CSState
Critical section state data type.
Definition: icall.h:819
struct _icall_register_isr_args_t ICall_RegisterISRArgs
ICall_registerISR arguments
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:688
struct _icall_set_timer_args_t ICall_SetTimerArgs
ICall_setTimer arguments
ICall_createTask argument
Definition: icall.h:661
ICall_ServiceEnum servId
service id
Definition: icall.h:796
Event for app RTI->stack RTI module.
Definition: icall.h:916
ICall_EntityID entityId
entity id
Definition: icall.h:526
ICall_signal arguments
Definition: icall.h:540
ICall Lite Command Status.
Definition: icall.h:926
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:629
ICall_stopTimer arguments
Definition: icall.h:896
struct _icall_getuint32_args_t ICall_GetUint32Args
ICall_getTicks , ICall_getTickPeriod and ICall_getMaxMSecs arguments
ICall_ServiceEnum servId
Service ID of destination.
Definition: icall.h:513
void(* ICall_PwrNotifyFn)(ICall_PwrTransition pwrTrans, struct _icall_pwr_notify_data_t *obj)
Definition: icall.h:767
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:695
uint_fast32_t ICall_getMaxMSecs(void)
Gets the maximum timeout period supported by ICall_setTimerMSecs function.
struct _icall_wait_semaphore_args_t ICall_WaitSemaphoreArgs
ICall_waitSemaphore argument
uint_least32_t value
field to store the retrieved value
Definition: icall.h:596
ICall_ServiceFunc fn
handler function which handles function calls to the service
Definition: icall.h:880
uint_fast8_t ICall_pwrGetTransitionState(void)
Retrieves power transition state.
ICall_EntityID entity
client entity id
Definition: icall.h:805
ICall_FuncID func
function id
Definition: icall.h:479
struct _ICall_LiteCmdStatus_ ICall_LiteCmdStatus
ICall Lite Command Status.
#define ICALL_ERRNO_SUCCESS
ICall function return value for successful operation.
Definition: icall.h:172
ICall_SyncHandle msgSyncHdl
field to store the synchronous object handle associated with the calling thread
Definition: icall.h:487
void(* isrfunc)(void)
pointer to ISR
Definition: icall.h:585
ICall_PwrNotifyData * obj
data object
Definition: icall.h:787
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:560
void * msg
field to store the starting address of the message body
Definition: icall.h:798
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:663
Power state transition notify function data object type.
Definition: icall.h:773
bool pwrRequired
the result of current activity counter
Definition: icall.h:615
uint_least8_t ICall_MSGFormat
Message conversion format data type.
Definition: icall.h:437
ICall_Errno ICall_registerISR(int intnum, void(*isrfunc)(void))
Registers an interrupt service routine.
uint_least16_t ICall_FuncID
Function id data type.
Definition: icall.h:440
ICall_FuncArgsHdr hdr
Common arguments.
Definition: icall.h:905
struct _icall_pwr_get_transition_state_args_t ICall_PwrGetTransitionStateArgs
ICall_pwrGetTransitionState arguments
struct _icall_pwr_bitmap_args_t ICall_PwrBitmapArgs
ICall_pwrConfigActivityCounterAction , ICall_pwrRequire and ICall_pwrDispense arguments.
ICall_pwrGetTransitionState arguments
Definition: icall.h:636
struct _icall_intnum_args_t ICall_IntNumArgs
ICall_enableInt and ICall_disableInt arguments
ICall_Errno ICall_setTimer(uint_fast32_t ticks, ICall_TimerCback cback, void *arg, ICall_TimerID *id)
Set up or restart a timer. Note that the timer setup initially by this function may be restarted usin...
ICall_pwrIsStableXOSCHF arguments
Definition: icall.h:602
ICall_freeMsg or ICall_free arguments
Definition: icall.h:499
ICall_postSemaphore argument
Definition: icall.h:686
ICall_Errno ICall_pwrConfigACAction(ICall_PwrBitmap_t bitmap)
Configures power constraint/dependency set/release actions upon activity counter change.
ICall_enableInt and ICall_disableInt arguments
Definition: icall.h:566
ICall_Semaphore ICall_createSemaphore(uint_fast8_t mode, int initcount)
Creates a semaphore.
void * ptr
pointer to the address of a memory block to free
Definition: icall.h:502
ICall_threadServes argument
Definition: icall.h:653
struct _icall_register_isr_args_ext_t ICall_RegisterISRArgs_Ext
ICall_registerISR_Ext arguments.
void ICall_freeMsg(void *msg)
Frees the memory block allocated for a message.
Common service function arguments.
Definition: icall.h:476
ICall_EntityID entityId
Entity ID of destination.
Definition: icall.h:512
ICall_fetchServiceMsg and ICall_fetchMsg arguments
Definition: icall.h:520
bool value
Definition: icall.h:607
ICall_EntityID entity
entity id
Definition: icall.h:907
struct _icall_register_app_args_t ICall_RegisterAppArgs
ICall_registerApp arguments
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:898
struct _icall_remote_task_arg_t ICall_RemoteTaskArg
Data type of the first argument passed to the entry point of an image which contains a remote task...
void ICall_free(void *msg)
Frees an allocated memory block.
size_t arg
argument passed to the task entry function
Definition: icall.h:667
ICall_registerISR_Ext arguments.
Definition: icall.h:581
struct _icall_wait_match_args_t ICall_WaitMatchArgs
ICall_waitMatch arguments
void * ICall_allocMsg(size_t size)
Allocates memory block for a message.
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:575
size_t size
size of the message body in bytes
Definition: icall.h:494
struct _icall_create_task_args_t ICall_CreateTaskArgs
ICall_createTask argument
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:501
ICall_SyncHandle msgSyncHdl
field to store the synchronous object handle associated with the calling thread
Definition: icall.h:882
ICall_Errno ICall_waitSemaphore(ICall_Semaphore sem, uint_fast32_t milliseconds)
Waits on a semaphore.
ICall_EntityID entity
field to store the entity id assigned to the application
Definition: icall.h:486
struct _icall_enroll_service_args_t ICall_EnrollServiceArgs
ICall_enrollService arguments
#define ICALL_MSG_FUNC_GET_LOCAL_MSG_ENTITY_ID
Messaging service function id for translating ICall_entityID to locally understandable id...
Definition: icall.h:414
ICall_Errno ICall_disableInt(int intnum)
Disables interrupt.
struct _icall_alloc_args_t ICall_AllocArgs
ICall_allocMsg or ICall_malloc arguments
Data type of the first argument passed to the entry point of an image which contains a remote task...
Definition: icall.h:847
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:638
void(* ICall_RemoteTaskEntry)(const ICall_RemoteTaskArg *arg0, void *arg1)
Service entry function prototype.
Definition: icall.h:864
ICall_Errno ICall_signal(ICall_SyncHandle msgSyncHdl)
Signals a semaphore.
PACKED_TYPEDEF_STRUCT
Type of Micro BLE Stack event header.
Definition: uble.h:314
void * msg
pointer to the message body to send
Definition: icall.h:516
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:613
ICall_ServiceEnum servId
Service ID of destination.
Definition: icall.h:656
ICall_Errno ICall_entityId2ServiceId(ICall_EntityID entityId, ICall_ServiceEnum *servId)
Transforms and entityId into a serviceId. Note that this function is useful in case an application wa...
ICall_Errno(* ICall_Dispatcher)(ICall_FuncArgsHdr *args)
Call dispatcher function pointer type.
Definition: icall.h:814
struct _icall_get_local_msg_entity_id_args_t ICall_GetLocalMsgEntityIdArgs
ICall_getLocalMsgEntityId arguments
void * ICall_malloc(uint_least16_t size)
Allocates a memory block.
struct _icall_func_args_hdr_t ICall_FuncArgsHdr
Common service function arguments.
ICall_Errno ICall_disableMInt(void)
Disables master interrupt and context switching.
ICall_SyncHandle syncHandle
handle of a synchronous object to signal
Definition: icall.h:543
struct _icall_pwr_get_xosc_startup_time_args_t ICall_PwrGetXOSCStartupTimeArgs
ICall_pwrGetXOSCStartupTime arguments
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:793
void(* ICall_LeaveCS)(ICall_CSState key)
Critical section exit function pointer type.
Definition: icall.h:834
void * ptr
pointer to store the start address of the newly allocated memory block
Definition: icall.h:495
ICall_LeaveCS ICall_leaveCriticalSection
Leave critical section function pointer of the current image.
ICall_Errno ICall_abort(void)
Aborts.
#define ICALL_INVALID_ENTITY_ID
Entity ID used to indicate invalid entity.
Definition: icall.h:153
ICall_EntityID dest
field to store the entity id of the destination of the message
Definition: icall.h:528
ICall_getTicks , ICall_getTickPeriod and ICall_getMaxMSecs arguments
Definition: icall.h:593
ICall_EntityID ICall_searchServiceEntity(ICall_ServiceEnum service)
Search for a service entity entry.
ICall_Errno ICall_sendServiceMsg(ICall_EntityID src, ICall_ServiceEnum dest, ICall_MSGFormat format, void *msg)
Sends a message to a registered server.
bool(* ICall_MsgMatchFn)(ICall_ServiceEnum src, ICall_EntityID dest, const void *msg)
Prototype of a function used to compare a received message for a match.
Definition: icall.h:466
struct _icall_free_args_t ICall_FreeArgs
ICall_freeMsg or ICall_free arguments
ICall_SyncHandle syncHandle
handle of a synchronous object to signal
Definition: icall.h:550
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:493
struct _icall_entity2service_args_t ICall_EntityId2ServiceIdArgs
ICall_entityId2ServiceId arguments
ICall_pwrConfigActivityCounterAction , ICall_pwrRequire and ICall_pwrDispense arguments.
Definition: icall.h:627
uint_fast32_t ICall_PwrBitmap_t
Power control bitmap type.
Definition: icall.h:621
ICall_PwrNotifyFn _private
a field for private use. Do not access the field. User data should follow this field.
Definition: icall.h:779
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:595
uint32_t events
events
Definition: icall.h:551
ICall_ServiceEnum service
service id
Definition: icall.h:478
ICall_ServiceEnum servId
field to store the service id
Definition: icall.h:562
ICall_Errno ICall_send(ICall_EntityID src, ICall_EntityID dest, ICall_MSGFormat format, void *msg)
Sends a message to an entity.
ICall_entityId2ServiceId arguments
Definition: icall.h:558
#define ICALL_SERVICE_CLASS_PRIMITIVE
Service class enumerated value for primitive service.
Definition: icall.h:79
void * msg
field to store the starting address of the message body
Definition: icall.h:529
ICall_Errno ICall_postSemaphore(ICall_Semaphore sem)
Post on a semaphore.
uint_least32_t milliseconds
timeout period in milliseconds
Definition: icall.h:794
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:485
struct _icall_get_entity_id_args_t ICall_GetEntityIdArgs
ICall_getEntityId arguments
Event for app RTI->stack RC App.
Definition: icall.h:914
uint_fast8_t state
power transition state
Definition: icall.h:639
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:655
uint_fast8_t ICall_getLocalMsgEntityId(ICall_ServiceEnum service, ICall_EntityID entity)
Retrieves an internal ID understood only by a service entity, corresponding to an ICall entity ID...
void ICall_stopTimer(ICall_TimerID id)
Stops a timer.
struct _icall_getbool_args_t ICall_GetBoolArgs
ICall_pwrIsStableXOSCHF arguments
int initcount
semaphore initial count value
Definition: icall.h:681
struct _icall_pwr_notify_data_t ICall_PwrNotifyData
Power state transition notify function data object type.
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:549
struct _icall_stop_timer_args_t ICall_StopTimerArgs
ICall_stopTimer arguments
ICall_getEntityId arguments
Definition: icall.h:802
ICall_allocMsg or ICall_malloc arguments
Definition: icall.h:491
ICall_Errno ICall_registerISR_Ext(int intnum, void(*isrfunc)(void), int intPriority)
ICall Register ISR.
ICall_Errno ICall_pwrSwitchXOSCHF(void)
Switch clock source to HF XOSC. This function must be called after HF XOSC is stable.
ICall_waitMatch arguments
Definition: icall.h:791
ICall_EnterCS ICall_enterCriticalSection
Enter critical section function pointer of the current image.
bool ICall_pwrIsStableXOSCHF(void)
Checks whether HF XOSC is stable. This function must be called after HF XOSC is turned on (through po...
ICall_EntityID dest
field to store the entity id of the destination of the message
Definition: icall.h:797
int_least32_t intnum
interrupt number
Definition: icall.h:584
struct _icall_signal_args_t ICall_SignalArgs
ICall_signal arguments
ICall_Errno ICall_pwrRegisterNotify(ICall_PwrNotifyFn fn, ICall_PwrNotifyData *obj)
Registers a power state transition notify function.
ICall_Errno ICall_setTimerMSecs(uint_fast32_t msecs, ICall_TimerCback cback, void *arg, ICall_TimerID *id)
Set up or restart a timer. Note that the timer setup initially by this function may be restarted usin...
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:878
uint_least32_t value
field to store the retrieved value
Definition: icall.h:649
ICall_wait arguments
Definition: icall.h:533
void ICall_createRemoteTasks(void)
Create remote tasks.
struct _icall_wait_args_t ICall_WaitArgs
ICall_wait arguments
ICall_TimerID timerid
timer ID
Definition: icall.h:890
void * arg
pointer to an argument to be passed to the callback function
Definition: icall.h:892
SYNC message from RNP app -> stack.
Definition: icall.h:919
void(* isrfunc)(void)
pointer to the interrupt service function
Definition: icall.h:577
ICall_ServiceEnum service
service id
Definition: icall.h:906
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:508
ICall_waitSemaphore argument
Definition: icall.h:693
int_least32_t intnum
interrupt number
Definition: icall.h:569
struct _icall_pwr_upd_activity_counter_args_t ICall_PwrUpdActivityCounterArgs
ICall_pwrUpdActivityCounter arguments
void(* entryfn)(size_t arg)
task entry function
Definition: icall.h:664
uint_least32_t milliseconds
timeout in milliseconds
Definition: icall.h:697
Event for stack RTI->app RTI module.
Definition: icall.h:917
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:785
uint_least8_t cmdId
command id (applicable only to User Profile subgrp)
Definition: icall.h:928
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:674
ICall_registerISR arguments
Definition: icall.h:573
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:568
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:535
ICall_EntityID entityId
entity id
Definition: icall.h:561
uint_least32_t milliseconds
timeout period in milliseconds
Definition: icall.h:536
ICall_EntityID entity
field to store the assigned entity id
Definition: icall.h:881
ICall_MsgMatchFn matchFn
match function
Definition: icall.h:795
ICall_TimerCback cback
callback function
Definition: icall.h:891
struct _icall_create_semaphore_args_t ICall_CreateSemaphoreArgs
ICall_createSemaphore argument
ICall_registerApp arguments
Definition: icall.h:483
Event for stack->app RC App.
Definition: icall.h:915
ICall_FuncArgsHdr hdr
Definition: icall.h:605
ICall_pwrUpdActivityCounter arguments
Definition: icall.h:611
ICall_Semaphore sem
semaphore
Definition: icall.h:696
uint_fast32_t ICall_getTicks(void)
Gets the current tick counter value.
void ICall_init(void)
Initializes the dispatcher implementation.
ICall_getLocalMsgEntityId arguments
Definition: icall.h:903
ICall_ServiceEnum servId
service id
Definition: icall.h:525
ICall_createSemaphore argument
Definition: icall.h:672
struct _icall_pwr_register_notify_args_t ICall_PwrRegisterNotifyArgs
ICall_pwrRegisterNotify arguments
uint_least8_t ICall_resetReason
Special global variable to set the reset reason by the boot code, before ICall is initialized...
ICall_pwrGetXOSCStartupTime arguments
Definition: icall.h:645
uint_least8_t ICall_EntityID
Entity id data type.
Definition: icall.h:453
int_least32_t intnum
interrupt number
Definition: icall.h:576
ASYNC message from RNP app->stack.
Definition: icall.h:918
ICall_Dispatcher ICall_dispatcher
Call dispatcher pointer of the current image.
ICall_EntityID src
Entity id of the sender of the message Destination id.
Definition: icall.h:509
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:583
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:542
struct _icall_fetch_msg_args_t ICall_FetchMsgArgs
ICall_fetchServiceMsg and ICall_fetchMsg arguments
ICall_PwrNotifyFn fn
notify function to handle notification
Definition: icall.h:786
ICall_Errno ICall_fetchMsg(ICall_EntityID *src, ICall_EntityID *dest, void **msg)
Retrieves a message, queued to receive queue of the calling thread.
ICall_setTimer arguments
Definition: icall.h:886
ICall_Errno ICall_fetchServiceMsg(ICall_ServiceEnum *src, ICall_EntityID *dest, void **msg)
Retrieves a message received at the message queue associated with the calling thread.
uint_least32_t timeout
timeout period
Definition: icall.h:889
ICall_ServiceEnum service
service id of the enrolling service
Definition: icall.h:879
ICall_Errno ICall_enableMInt(void)
Enables master interrupt and context switching.
uint_fast8_t result
Result (true or false)
Definition: icall.h:657
ICall_TimerID timerid
timer ID
Definition: icall.h:899
uint_least16_t ICall_ServiceEnum
Service enumeration data type.
Definition: icall.h:434
ICall_CSState(* ICall_EnterCS)(void)
Critical section entry function pointer type.
Definition: icall.h:826
ICall_Semaphore sem
created semaphore
Definition: icall.h:682
ICall_Errno ICall_waitMatch(uint_least32_t milliseconds, ICall_MsgMatchFn matchFn, ICall_ServiceEnum *src, ICall_EntityID *dest, void **msg)
Waits for and retrieves a message received at the message queue associated with the calling thread...
struct _icall_signal_events_args_t ICall_SignalEventsArgs
ICall_signal arguments
uint32_t icall_directAPI(uint8_t service, icall_lite_id_t id,...)
generic variadic function to translate API id to a functional call in the stack context,
ICall_EntityID ICall_getEntityId(void)
Retrieves an entity ID of (arbitrary) one of the entities registered from the calling thread...
ICall_FuncArgsHdr hdr
common arguments
Definition: icall.h:888
bool ICall_pwrUpdActivityCounter(bool incFlag)
Increments or decrements power activity counter.
ICall_Errno ICall_registerApp(ICall_EntityID *entity, ICall_SyncHandle *msgSyncHdl)
Registers an application.
ICall_PwrBitmap_t bitmap
power configuration bitmap
Definition: icall.h:630