/nrf52832-nimble/rt-thread/libcpu/c-sky/common/ |
H A D | csi_simd.h | 69 … the signed saturation of the low halfword in val1, saturated to the bit position specified in 70 val2 and returned in the low halfword of the return value.\n 90 … the saturation of the low halfword in val1, saturated to the bit position specified in 91 val2 and returned in the low halfword of the return value.\n 397 …\return the saturated addition of the low halfwords, in the low halfword of the return valu… 420 …\return the saturated addition of the low halfwords, in the low halfword of the return valu… 442 \return the addition of the low halfwords in the low halfword of the return value.\n 463 \return the addition of the low halfwords in the low halfword of the return value.\n 485 …\return the halved addition of the low halfwords, in the low halfword of the return value.\n 506 …\return the halved addition of the low halfwords, in the low halfword of the return value.\n [all …]
|
/nrf52832-nimble/rt-thread/components/vbus/ |
H A D | watermark_queue.c | 17 unsigned int low, unsigned int high) in rt_wm_que_set_mark() argument 19 RT_ASSERT(low <= high); in rt_wm_que_set_mark() 22 wg->low_mark = low; in rt_wm_que_set_mark() 26 unsigned int low, unsigned int high) in rt_wm_que_init() argument 28 rt_wm_que_set_mark(wg, low, high); in rt_wm_que_init() 37 rt_kprintf("wg %p: low: %d, high: %d, cur: %d\n", in rt_wm_que_dump()
|
H A D | watermark_queue.h | 23 unsigned int low, unsigned int high); 25 unsigned int low, unsigned int high); 98 * level reached low mark, all the thread suspended in this queue will be waken 113 /* There should be spaces between the low mark and high mark, so it's in rt_wm_que_dec()
|
H A D | vbus_chnx.c | 187 if (cfg->low > cfg->high) in _control() 190 rt_vbus_set_recv_wm(vdev->chnr, cfg->low, cfg->high); in _control() 204 if (cfg->low > cfg->high) in _control() 207 rt_vbus_set_post_wm(vdev->chnr, cfg->low, cfg->high); in _control()
|
H A D | vbus.c | 148 void rt_vbus_set_post_wm(unsigned char chnr, unsigned int low, unsigned int high) in rt_vbus_set_post_wm() argument 151 rt_wm_que_set_mark(&_chn_wm_que[chnr], low, high); in rt_vbus_set_post_wm() 165 * the low mark. */ 169 void rt_vbus_set_recv_wm(unsigned char chnr, unsigned int low, unsigned int high) in rt_vbus_set_recv_wm() argument 172 _chn_recv_wm[chnr].low_mark = low; in rt_vbus_set_recv_wm() 176 void rt_vbus_set_recv_wm(unsigned char chnr, unsigned int low, unsigned int high) in rt_vbus_set_recv_wm() argument 178 void rt_vbus_set_post_wm(unsigned char chnr, unsigned int low, unsigned int high) in rt_vbus_set_post_wm() argument 448 #error "_BUS_OUT_THRD_PRIO too low" 741 rt_vbus_set_recv_wm(chnr, _sess[i].req->recv_wm.low, _sess[i].req->recv_wm.high); in _chn0_actor() 742 rt_vbus_set_post_wm(chnr, _sess[i].req->post_wm.low, _sess[i].req->post_wm.high); in _chn0_actor() [all …]
|
H A D | vbus.h | 54 unsigned int low, high; member 74 void rt_vbus_set_post_wm(unsigned char chnr, unsigned int low, unsigned int high); 76 void rt_vbus_set_recv_wm(unsigned char chnr, unsigned int low, unsigned int high);
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_clock.h | 47 * This code can be used to managing low-frequency clock (LFCLK) and the high-frequency clock 63 * @brief Presence of the Low Frequency Clock calibration. 73 * @brief Low-frequency clock sources. 95 * External 32 kHz low swing signal. Used only with the LFCLKSRC register. 151 …* @details The NRF_CLOCK_TASK_LFCLKSTOP task cannot be set when the low-frequency clock is not run… 249 * @brief Function for changing the low-frequency clock source. 250 * @details This function cannot be called when the low-frequency clock is running. 252 * @param[in] source New low-frequency clock source. 257 * @brief Function for retrieving the selected source for the low-frequency clock. 260 * is the selected source for the low-frequency clock. [all …]
|
H A D | nrf_saadc.h | 193 …offsetof(NRF_SAADC_Type, EVENTS_CH[0].LIMITL), ///< Last result is equal or below CH[0].LIMIT.LOW. 195 …offsetof(NRF_SAADC_Type, EVENTS_CH[1].LIMITL), ///< Last result is equal or below CH[1].LIMIT.LOW. 197 …offsetof(NRF_SAADC_Type, EVENTS_CH[2].LIMITL), ///< Last result is equal or below CH[2].LIMIT.LOW. 199 …offsetof(NRF_SAADC_Type, EVENTS_CH[3].LIMITL), ///< Last result is equal or below CH[3].LIMIT.LOW. 201 …offsetof(NRF_SAADC_Type, EVENTS_CH[4].LIMITL), ///< Last result is equal or below CH[4].LIMIT.LOW. 203 …offsetof(NRF_SAADC_Type, EVENTS_CH[5].LIMITL), ///< Last result is equal or below CH[5].LIMIT.LOW. 205 …offsetof(NRF_SAADC_Type, EVENTS_CH[6].LIMITL), ///< Last result is equal or below CH[6].LIMIT.LOW. 207 …offsetof(NRF_SAADC_Type, EVENTS_CH[7].LIMITL) ///< Last result is equal or below CH[7].LIMIT.LOW. 366 * @param[in] limit_type Low limit or high limit. 376 * @param[in] limit_type Low limit or high limit. [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/ |
H A D | inftrees.c | 51 unsigned low; /* low bits for current root entry */ local 52 unsigned mask; /* mask for low root bits */ 159 of the low root bits of huff. This is saved in low to check for when a 207 low = (unsigned)(-1); /* trigger new sub-table when len > root */ 209 mask = used - 1; /* mask for comparing low */ 232 /* replicate for those indices with low len bits equal to huff */ 260 if (len > root && (huff & mask) != low) { 284 low = huff & mask; 285 (*table)[low].op = (unsigned char)curr; 286 (*table)[low].bits = (unsigned char)root; [all …]
|
H A D | inflate.c | 271 unsigned low, size; in makefixed() local 286 low = 0; in makefixed() 288 if ((low % 7) == 0) printf("\n "); in makefixed() 289 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits, in makefixed() 290 state.lencode[low].val); in makefixed() 291 if (++low == size) break; in makefixed() 297 low = 0; in makefixed() 299 if ((low % 6) == 0) printf("\n "); in makefixed() 300 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits, in makefixed() 301 state.distcode[low].val); in makefixed() [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/include/nimble/ |
H A D | ble_hci_trans.h | 37 * o Low-priority (BLE_HCI_TRANS_BUF_EVT_LO) 40 * Low-priority event buffers are only used for advertising reports. If there 41 * are no free low-priority event buffers, then an incoming advertising report 46 * will try to allocate a low-priority buffer instead. 49 * low-priority events only. 55 * Not all transports distinguish between low and high priority events. If the 56 * transport does not have separate settings for low and high buffer counts,
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_gpiote.h | 60 /**@brief Macro for configuring a pin to use a GPIO IN or PORT EVENT to detect low-to-high transiti… 70 /**@brief Macro for configuring a pin to use a GPIO IN or PORT EVENT to detect high-to-low transiti… 90 /**@brief Macro for configuring a pin to use a GPIO IN or PORT EVENT to detect low-to-high transiti… 102 /**@brief Macro for configuring a pin to use a GPIO IN or PORT EVENT to detect high-to-low transiti… 142 /**@brief Macro for configuring a pin to use the GPIO OUT TASK to change the state from high to low. 151 /**@brief Macro for configuring a pin to use the GPIO OUT TASK to change the state from low to high. 301 * - lower accuracy but low power (high frequency clock not needed) 308 * In low accuracy mode SENSE feature is used. In this case only one active pin 310 * low accuracy pins to toggle mode. 365 …* @details If the pin is configured to use low-accuracy mode, the address of the PORT event is ret…
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/drivers/nrf52/ |
H A D | syscfg.yml | 39 20 or 21 and back to low state on radio EVENTS_READY. 46 to high state on radio EVENTS_ADDRESS and back to low state 54 to high state on radio EVENTS_RXREADY and back to low 62 "[164] RADIO: Low selectivity in long range mode"
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/ |
H A D | syscfg.yml | 201 Enable this option to be able to act as a Low Power Node. 206 Perform the Friendship establishment using low power, with 255 The ReceiveDelay is the time between the Low Power node 264 consecutive requests sent by the Low Power node. If no 311 Friend node for a Low Power node. 316 Number of Low Power Nodes the Friend can have a Friendship 400 Use this option to enable Low Power debug logs for the 491 infrequently a value as low as 0 (update storage for every 504 value as low as 0 (write immediately) may make sense. Note that
|
/nrf52832-nimble/nordic/nrfx/mdk/ |
H A D | nrf51.svd | 98 <description>Enable low power mode (variable latency).</description> 1120 <description>Low frequency clock status.</description> 4302 <description>1Mbit/s Bluetooth Low Energy</description> 6225 <description>Active low.</description> 7471 <description>Active low.</description> 7896 <description>Low to high.</description> 7901 <description>High to low.</description> 7917 <name>Low</name> 7918 <description>Initial low output when in task mode.</description> 11865 <description>LED output is active low.</description> [all …]
|
H A D | nrf51_bitfields.h | 423 /* Description: Low frequency clock status. */ 579 #define GPIO_OUT_PIN31_Low (0UL) /*!< Pin driver is low. */ 585 #define GPIO_OUT_PIN30_Low (0UL) /*!< Pin driver is low. */ 591 #define GPIO_OUT_PIN29_Low (0UL) /*!< Pin driver is low. */ 597 #define GPIO_OUT_PIN28_Low (0UL) /*!< Pin driver is low. */ 603 #define GPIO_OUT_PIN27_Low (0UL) /*!< Pin driver is low. */ 609 #define GPIO_OUT_PIN26_Low (0UL) /*!< Pin driver is low. */ 615 #define GPIO_OUT_PIN25_Low (0UL) /*!< Pin driver is low. */ 621 #define GPIO_OUT_PIN24_Low (0UL) /*!< Pin driver is low. */ 627 #define GPIO_OUT_PIN23_Low (0UL) /*!< Pin driver is low. */ [all …]
|
H A D | nrf52810.svd | 2333 <description>Disable (use with Xtal or low-swing external source)</description> 2411 <description>Enable low power mode (variable latency)</description> 4282 <name>Low</name> 4380 <description>1 Mbit/s Bluetooth Low Energy</description> 4385 <description>2 Mbit/s Bluetooth Low Energy</description> 5376 <description>CTS is activated (set low). Clear To Send.</description> 9908 <description>Active low</description> 10632 <description>Active low</description> 10719 … Task for writing to pin specified in CONFIG[n].PSEL. Action on pin is to set it low.</description> 11332 <name>Low</name> [all …]
|
H A D | nrf52810_bitfields.h | 887 #define CLOCK_LFCLKSRC_BYPASS_Disabled (0UL) /*!< Disable (use with Xtal or low-swing external sour… 1162 #define COMP_MODE_SP_Low (0UL) /*!< Low-power mode */ 1841 …lection[n]: Task for writing to pin specified in CONFIG[n].PSEL. Action on pin is to set it low. */ 1999 …IOTE_CONFIG_OUTINIT_Low (0UL) /*!< Task mode: Initial value of pin before task triggering is low */ 2107 #define GPIO_OUT_PIN31_Low (0UL) /*!< Pin driver is low */ 2113 #define GPIO_OUT_PIN30_Low (0UL) /*!< Pin driver is low */ 2119 #define GPIO_OUT_PIN29_Low (0UL) /*!< Pin driver is low */ 2125 #define GPIO_OUT_PIN28_Low (0UL) /*!< Pin driver is low */ 2131 #define GPIO_OUT_PIN27_Low (0UL) /*!< Pin driver is low */ 2137 #define GPIO_OUT_PIN26_Low (0UL) /*!< Pin driver is low */ [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/nfs/rpc/ |
H A D | rpc_prot.c | 99 if (!xdr_u_long(xdrs, &(ar->ar_vers.low))) in xdr_accepted_reply() 118 if (!xdr_u_long(xdrs, &(rr->rj_vers.low))) in xdr_rejected_reply() 254 error->re_vers.low = msg->rjcted_rply.rj_vers.low; in _seterr_reply() 263 error->re_vers.low = msg->acpted_rply.ar_vers.low; in _seterr_reply()
|
/nrf52832-nimble/packages/NimBLE-latest/docs/mesh/ |
H A D | index.rst | 20 making it very power efficient (battery powered low-power nodes that don't relay messages can opera… 35 - Low Power - operate within a mesh network at significantly reduced receiver duty cycles only in … 37 - Friend - the ability to help a node supporting the Low Power feature to operate by storing messa…
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/ |
H A D | FILES | 5 with the lwIP low-level raw API. 8 memory and buffer management, and the low-level raw API.
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/ |
H A D | FILES | 5 with the lwIP low-level raw API. 8 memory and buffer management, and the low-level raw API.
|
/nrf52832-nimble/rt-thread/components/drivers/sensors/ |
H A D | bmi055_sensor.h | 18 #define BMI055_ACC_I2C_ADDR1 0x18 //SDO is low(GND) 62 /**< Address of PMU LOW POWER */ 86 /**< Address of low-g Interrupt delay time Register */ 88 /**< Address of low-g Interrupt threshold Register */ 158 // #define BMI055_I2C_ADDR1 0x68 //SDO is low(GND) 160 #define BMI055_GYRO_I2C_ADDR1 0x68 //SDO is low(GND)
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/elmfat/ |
H A D | 00readme.txt | 17 Low level disk I/O module is not included in this archive because the FatFs 19 storage device. You have to provide a low level disk I/O module that written
|
/nrf52832-nimble/rt-thread/libcpu/arm/lpc24xx/ |
H A D | start_rvds.S | 467 ;// <o0.2> L: Low-power mode enable 587 ;// <1=> Low-power SDRAM 601 ;// <1=> Low-power SDRAM 634 ;// <1=> Low-power SDRAM 648 ;// <1=> Low-power SDRAM 680 ;// <1=> Low-power SDRAM 694 ;// <1=> Low-power SDRAM 726 ;// <1=> Low-power SDRAM 740 ;// <1=> Low-power SDRAM 776 ;// <0=> For reads BLSn are HIGH, for writes BLSn are LOW [all …]
|