Home
last modified time | relevance | path

Searched full:current (Results 1 – 25 of 732) sorted by relevance

12345678910>>...30

/nrf52832-nimble/rt-thread/libcpu/risc-v/k210/
H A Dinterrupt.c52 /* Get current enable bit array by IRQ number */ in rt_hw_plic_irq_enable()
53 uint32_t current = plic->target_enables.target[core_id].enable[irq_number / 32]; in rt_hw_plic_irq_enable() local
55 current |= (uint32_t)1 << (irq_number % 32); in rt_hw_plic_irq_enable()
57 plic->target_enables.target[core_id].enable[irq_number / 32] = current; in rt_hw_plic_irq_enable()
68 /* Get current enable bit array by IRQ number */ in rt_hw_plic_irq_disable()
69 uint32_t current = plic->target_enables.target[core_id].enable[irq_number / 32]; in rt_hw_plic_irq_disable() local
71 current &= ~((uint32_t)1 << (irq_number % 32)); in rt_hw_plic_irq_disable()
73 plic->target_enables.target[core_id].enable[irq_number / 32] = current; in rt_hw_plic_irq_disable()
87 /* Disable all interrupts for the current core. */ in rt_hw_interrupt_init()
121 /* Disable all interrupts for the current core. */ in rt_hw_scondary_interrupt_init()
[all …]
/nrf52832-nimble/rt-thread/libcpu/risc-v/common/
H A Driscv-plic.h77 unsigned int current = *current_ptr; in __plic_irq_enable() local
78 current = current | (1 << (source & 0x1F)); in __plic_irq_enable()
79 *current_ptr = current; in __plic_irq_enable()
89 unsigned int current = *current_ptr; in __plic_irq_disable() local
90 current = current & ~((1 << (source & 0x1F))); in __plic_irq_disable()
91 *current_ptr = current; in __plic_irq_disable()
/nrf52832-nimble/rt-thread/components/net/uip/apps/webclient/
H A Dwebclient.h181 * Obtain the MIME type of the current HTTP data stream.
189 * Obtain the filename of the current HTTP data stream.
194 * the current filename.
196 * \return A pointer to the current filename.
201 * Obtain the hostname of the current HTTP data stream.
206 * is used for obtaining the current hostname.
208 * \return A pointer to the current hostname.
213 * Obtain the port number of the current HTTP data stream.
218 * obtaining the current port number.
220 * \return The port number of the current HTTP data stream, in host byte order.
/nrf52832-nimble/rt-thread/libcpu/arm/lpc24xx/
H A Dtrap.c52 rt_kprintf("Current Thread: %s\n", rt_thread_self()->name); in rt_hw_trap_udef()
70 rt_kprintf("Current Thread: %s\n", rt_thread_self()->name); in rt_hw_trap_swi()
75 * An abort indicates that the current memory access cannot be completed,
87 rt_kprintf("Current Thread: %s\n", rt_thread_self()->name); in rt_hw_trap_pabt()
92 * An abort indicates that the current memory access cannot be completed,
104 rt_kprintf("Current Thread: %s\n", rt_thread_self()->name); in rt_hw_trap_dabt()
120 rt_kprintf("Current Thread: %s\n", rt_thread_self()->name); in rt_hw_trap_resv()
/nrf52832-nimble/rt-thread/components/CMSIS/Include/
H A Dcore_cmFunc.h125 This function returns the current value of the Process Stack Pointer (PSP).
151 This function returns the current value of the Main Stack Pointer (MSP).
177 … This function returns the current state of the priority mask bit from the Priority Mask Register.
221 This function returns the current value of the Base Priority register.
247 This function returns the current value of the Fault Mask register.
277 This function returns the current value of the Floating Point Status/Control register.
420 This function returns the current value of the Process Stack Pointer (PSP).
447 This function returns the current value of the Main Stack Pointer (MSP).
474 … This function returns the current state of the priority mask bit from the Priority Mask Register.
525 This function returns the current value of the Base Priority register.
[all …]
/nrf52832-nimble/rt-thread/components/drivers/rtc/
H A Dalarm.c180 if ((alarm->flag & RT_ALARM_STATE_START) && (alarm != _container.current)) in alarm_update()
207 _container.current = alm_next; in alarm_update()
213 _container.current = alm_prev; in alarm_update()
441 if (_container.current == RT_NULL) in rt_alarm_start()
448 sec_old = alarm_mkdaysec(&_container.current->wktime); in rt_alarm_start()
472 _container.current = alarm; in rt_alarm_start()
499 if (_container.current == alarm) in rt_alarm_stop()
502 _container.current = RT_NULL; in rt_alarm_stop()
528 if (_container.current == alarm) in rt_alarm_delete()
531 _container.current = RT_NULL; in rt_alarm_delete()
[all …]
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Duip.h514 * Send data on the current connection.
564 * Close the current connection.
566 * This function will close the current connection in a nice way.
573 * Abort the current connection.
575 * This function will abort (reset) the current connection, and is
587 * receiving data for the current connection.
594 * Find out if the current connection has been previously stopped with
602 * Restart the current connection, if is has previously been stopped
606 * start receiving data for the current connection.
615 /* uIP tests that can be made to determine in what state the current
[all …]
H A Duip_clock.h67 * Get the current clock time.
69 * This function returns the current system clock time.
71 * \return The current clock time, measured in system ticks.
/nrf52832-nimble/nordic/nrfx/hal/
H A Dnrf_systick.h98 * @brief Get the current reload value.
112 * @brief Read the SysTick current value
114 * @return The current SysTick value
120 * @brief Clear the SysTick current value
122 * @note The SysTick does not allow setting current value.
H A Dnrf_comp.h134 * @brief COMP current source selection on analog input.
138 NRF_COMP_ISOURCE_Off = COMP_ISOURCE_ISOURCE_Off, /*!< Current source disabled. */
139 …NRF_COMP_ISOURCE_Ien2uA5 = COMP_ISOURCE_ISOURCE_Ien2mA5, /*!< Current source enabled (+/- 2.5 u…
140 …NRF_COMP_ISOURCE_Ien5uA = COMP_ISOURCE_ISOURCE_Ien5mA, /*!< Current source enabled (+/- 5 uA)…
141 …NRF_COMP_ISOURCE_Ien10uA = COMP_ISOURCE_ISOURCE_Ien10mA /*!< Current source enabled (+/- 10 uA…
252 * @brief Function for setting the current source on the analog input.
254 * @param[in] isource COMP current source selection on analog input.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/
H A Dip.h109 /** The interface that accepted the packet for the current callback invocation. */
111 /** The interface that received the packet for the current callback invocation. */
131 /** Get the interface that accepted the current packet.
136 /** Get the interface that received the current packet.
148 /** Get the IPv4 header of the current packet.
152 /** Get the IPv6 header of the current packet.
156 /** Returns TRUE if the current IP input packet is IPv6, FALSE if it is IPv4 */
177 /** Get the IPv4 header of the current packet.
194 /** Get the IPv6 header of the current packet.
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/
H A Dip.h107 /** The interface that accepted the packet for the current callback invocation. */
109 /** The interface that received the packet for the current callback invocation. */
129 /** Get the interface that accepted the current packet.
134 /** Get the interface that received the current packet.
146 /** Get the IPv4 header of the current packet.
150 /** Get the IPv6 header of the current packet.
154 /** Returns TRUE if the current IP input packet is IPv6, FALSE if it is IPv4 */
175 /** Get the IPv4 header of the current packet.
192 /** Get the IPv6 header of the current packet.
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_1/src/
H A Dmain.c197 u8_t current; member
334 bt_mesh_model_elem(model)->addr, state->current); in gen_onoff_get()
336 net_buf_simple_add_u8(msg, state->current); in gen_onoff_get()
353 state->current = net_buf_simple_pull_u8(buf); in gen_onoff_set_unack()
355 bt_mesh_model_elem(model)->addr, state->current); in gen_onoff_set_unack()
359 state->current ? 0 : 1); in gen_onoff_set_unack()
370 if (state->previous != state->current && in gen_onoff_set_unack()
374 state->current); in gen_onoff_set_unack()
375 state->previous = state->current; in gen_onoff_set_unack()
378 net_buf_simple_add_u8(msg, state->current); in gen_onoff_set_unack()
/nrf52832-nimble/rt-thread/components/dfs/filesystems/elmfat/
H A Dff.h119 DWORD cdir; /* Current directory start cluster (0:root) */
132 DWORD winsect; /* Current sector appearing in the win[] */
167 DWORD clust; /* Current cluster of fpter (invalid when fprt is 0) */
187 DWORD dptr; /* Current read/write offset */
188 DWORD clust; /* Current cluster */
189 DWORD sect; /* Current sector */
193 DWORD blk_ofs; /* Offset of current entry block being processed (0xFFFFFFFF:Invalid) */
268 FRESULT f_chdir (const TCHAR* path); /* Change current directory */
269 FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
270 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
/nrf52832-nimble/nordic/nrfx/drivers/include/
H A Dnrfx_systick.h77 * @brief Get current SysTick state
79 * Function gets current state of the SysTick timer.
92 * @retval true If current time is higher than specified state plus given time-out.
93 * @retval false If current time is lower than specified state plus given time-out
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/services/lls/src/
H A Dble_svc_lls.c126 * so, we call the ble_svc_lls_event_fn callback with the current
142 * Gets the current alert level.
144 * @return The current alert level
153 * Sets the current alert level.
/nrf52832-nimble/rt-thread/components/drivers/pm/
H A Dpm.c100 /* The current mode is run mode, no need to check sleep mode */ in rt_pm_enter()
122 /* set current power mode */ in rt_pm_enter()
236 /* the old current mode is RUN mode, need to all pm->ops->exit(), in rt_pm_request()
250 /* update current mode */ in rt_pm_request()
253 /* current mode is higher run mode */ in rt_pm_request()
347 /* remove current entry */ in rt_pm_unregister_device()
544 rt_kprintf("pm current mode: %s\n", pm_str[pm->current_mode]); in rt_pm_dump_status()
/nrf52832-nimble/rt-thread/components/net/freemodbus/port/
H A Duser_mb_app_m.c128 /* read current register values from the protocol stack. */ in eMBMasterRegHoldingCB()
138 /* write current register values with new values from the protocol stack. */ in eMBMasterRegHoldingCB()
196 /* read current coil values from the protocol stack. */ in eMBMasterRegCoilsCB()
212 /* write current coil values with new values from the protocol stack. */ in eMBMasterRegCoilsCB()
271 /* write current discrete values with new values from the protocol stack. */ in eMBMasterRegDiscreteCB()
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_setup/
H A Dble_lp_clock.rst60 ``BLE_XTAL_SETTLE_TIME`` accordingly. The current value of 1500
66 current when running so keeping this time as small as possible will
67 reduce overall current drain.
/nrf52832-nimble/rt-thread/src/
H A Dclock.c47 * This function will return current tick from operating system startup
49 * @return current tick
59 * This function will set current tick
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/doc/
H A Dcontrib.txt25 10. use current source code style as further reference.
32 3. Use current documentation style as further reference.
37 sources. (From the latest release and/or the current Git sources.)
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/
H A Dcontrib.txt25 10. use current source code style as further reference.
32 3. Use current documentation style as further reference.
37 sources. (From the latest release and/or the current Git sources.)
/nrf52832-nimble/rt-thread/components/net/uip/doc/html/
H A Dglobals_0x66.html13 <li id="current"><a href="files.html"><span>Files</span></a></li>
19 <li id="current"><a href="globals.html"><span>Globals</span></a></li>
23 <li id="current"><a href="globals.html"><span>All</span></a></li>
37 <li id="current"><a href="globals_0x66.html#index_f"><span>f</span></a></li>
H A Dglobals_defs_0x61.html13 <li id="current"><a href="files.html"><span>Files</span></a></li>
19 <li id="current"><a href="globals.html"><span>Globals</span></a></li>
27 <li id="current"><a href="globals_defs.html"><span>Defines</span></a></li>
33 <li id="current"><a href="globals_defs_0x61.html#index_a"><span>a</span></a></li>
H A Dglobals_defs_0x6e.html13 <li id="current"><a href="files.html"><span>Files</span></a></li>
19 <li id="current"><a href="globals.html"><span>Globals</span></a></li>
27 <li id="current"><a href="globals_defs.html"><span>Defines</span></a></li>
42 <li id="current"><a href="globals_defs_0x6e.html#index_n"><span>n</span></a></li>

12345678910>>...30