Home
last modified time | relevance | path

Searched refs:next (Results 1 – 7 of 7) sorted by relevance

/loramac-node-3.4.0/src/boards/mcu/saml21/hal/utils/src/
Dutils_list.c53 for (it = list->head; it; it = it->next) { in is_list_element()
69 ((struct list_element *)element)->next = list->head; in list_insert_as_head()
78 ((struct list_element *)element)->next = ((struct list_element *)after)->next; in list_insert_after()
79 ((struct list_element *)after)->next = (struct list_element *)element; in list_insert_after()
93 ((struct list_element *)element)->next = NULL; in list_insert_at_end()
97 while (it->next) { in list_insert_at_end()
98 it = it->next; in list_insert_at_end()
100 it->next = (struct list_element *)element; in list_insert_at_end()
101 ((struct list_element *)element)->next = NULL; in list_insert_at_end()
112 list->head = list->head->next; in list_remove_head()
[all …]
/loramac-node-3.4.0/src/system/
Dtimer.c144 TimerEvent_t* next = TimerListHead->Next; in TimerInsertTimer() local
148 if( obj->Timestamp > next->Timestamp ) in TimerInsertTimer()
150 cur = next; in TimerInsertTimer()
151 next = next->Next; in TimerInsertTimer()
156 obj->Next = next; in TimerInsertTimer()
186 TimerEvent_t* next; in TimerIrqHandler() local
198 next = cur->Next; in TimerIrqHandler()
199 if( next->Timestamp > deltaContext ) in TimerIrqHandler()
201 next->Timestamp -= deltaContext; in TimerIrqHandler()
205 next->Timestamp = 0; in TimerIrqHandler()
/loramac-node-3.4.0/src/boards/mcu/
Dutilities.c35 static uint32_t next = 1; variable
39 return ( ( next = next * 1103515245L + 12345L ) % RAND_LOCAL_MAX ); in rand1()
44 next = seed; in srand1()
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/utils/include/
Dutils_list.h63 struct list_element *next; member
106 return element ? ((struct list_element *)element)->next : NULL; in list_get_next_element()
/loramac-node-3.4.0/
DSECURITY.md5 …evelop](https://github.com/Lora-net/LoRaMac-node/tree/develop) branch and included in next release.
DCHANGELOG.md291 - Changed the `MlmeRequest` and `McpsRequest` APIs to report back when the next transmission is pos…
/loramac-node-3.4.0/src/apps/LoRaMac/fuota-test-01/
Dreadme.md18 4. Server waits for the next AppTimeReq uplink to check that end-device time is now correct (+/- 2s…