OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ACI_QUEUE_SIZE
(Results
1 - 2
of
2
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
aci_queue.h
39
/* The
ACI_QUEUE_SIZE
determines the memory usage of the system. */
40
/* Successfully tested to a
ACI_QUEUE_SIZE
of 4 (interrupt) and 4 (polling) */
42
#define
ACI_QUEUE_SIZE
4
53
hal_aci_data_t aci_data[
ACI_QUEUE_SIZE
];
aci_queue.cxx
37
for(loop=0; loop<
ACI_QUEUE_SIZE
; loop++)
55
aci_q->head = (aci_q->head + 1) %
ACI_QUEUE_SIZE
;
71
aci_q->head = (aci_q->head + 1) %
ACI_QUEUE_SIZE
;
90
aci_q->tail = (aci_q->tail + 1) %
ACI_QUEUE_SIZE
;
109
aci_q->tail = (aci_q->tail + 1) %
ACI_QUEUE_SIZE
;
147
next = (aci_q->tail + 1) %
ACI_QUEUE_SIZE
;
166
const uint8_t next = (aci_q->tail + 1) %
ACI_QUEUE_SIZE
;
Completed in 46 milliseconds