/nrf52832-nimble/rt-thread/tools/ |
H A D | vs2012.py | 62 Filter = SubElement(ClCompile, 'Filter') 63 Filter.text='Source Files\\'+group_name 69 Filter = SubElement(filter_ItemGroup, 'Filter') 70 Filter.set('Include', 'Source Files') 71 UniqueIdentifier = SubElement(Filter, 'UniqueIdentifier') 73 Extensions = SubElement(Filter, 'Extensions') 76 Filter = SubElement(filter_ItemGroup, 'Filter') 77 Filter.set('Include', 'Header Files') 78 UniqueIdentifier = SubElement(Filter, 'UniqueIdentifier') 80 Extensions = SubElement(Filter, 'Extensions') [all …]
|
H A D | vs.py | 38 Filter = SubElement(parent, 'Filter') 39 Filter.set('Name', name) #set group name to group 49 File = SubElement(Filter, 'File') 59 File = SubElement(Filter, 'File') 87 for elem in tree.iter(tag='Filter'): 108 for elem in tree.iter(tag='Filter'):
|
/nrf52832-nimble/rt-thread/components/utilities/ulog/ |
H A D | ulog.c | 101 /* all tag's level filter */ 103 /* global filter level, tag and keyword */ 107 } filter; member 501 /* level filter */ 503 if (level > ulog.filter.level || level > ulog_tag_lvl_filter_get(tag)) 508 if (((LOG_MASK(LOG_PRI(level)) & ulog.filter.level) == 0) 514 else if (!rt_strstr(tag, ulog.filter.tag)) 516 /* tag filter */ 535 /* keyword filter */ 536 if (ulog.filter.keyword[0] != '\0') [all …]
|
H A D | ulog_def.h | 25 /* the output silent level and all level for filter setting */ 159 /* output filter's tag max length */ 164 /* output filter's keyword max length */ 175 /* tag's level filter */
|
H A D | ulog.h | 58 * log filter setting
|
/nrf52832-nimble/nordic/cmsis/include/ |
H A D | arm_math.h | 903 * @brief Instance structure for the Q7 FIR filter. 907 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 913 * @brief Instance structure for the Q15 FIR filter. 917 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 923 * @brief Instance structure for the Q31 FIR filter. 927 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 933 * @brief Instance structure for the floating-point FIR filter. 937 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 944 * @brief Processing function for the Q7 FIR filter. 945 * @param[in] S points to an instance of the Q7 FIR filter structure. [all …]
|
/nrf52832-nimble/rt-thread/components/CMSIS/Include/ |
H A D | arm_math.h | 1043 * @brief Instance structure for the Q7 FIR filter. 1047 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 1053 * @brief Instance structure for the Q15 FIR filter. 1057 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 1063 * @brief Instance structure for the Q31 FIR filter. 1067 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 1073 * @brief Instance structure for the floating-point FIR filter. 1077 uint16_t numTaps; /**< number of filter coefficients in the filter. */ 1084 * @brief Processing function for the Q7 FIR filter. 1085 * @param[in] *S points to an instance of the Q7 FIR filter structure. [all …]
|
/nrf52832-nimble/rt-thread/components/utilities/ |
H A D | Kconfig | 214 bool "Enable runtime log filter." 217 It will enable the log filter. 218 Such as level filter, log tag filter, log kw filter and tag's level filter.
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/ |
H A D | proxy.c | 109 u16_t filter[MYNEWT_VAL(BLE_MESH_PROXY_FILTER_SIZE)]; member 204 BT_WARN("Too short Filter Set message"); in filter_set() 213 memset(client->filter, 0, sizeof(client->filter)); in filter_set() 217 memset(client->filter, 0, sizeof(client->filter)); in filter_set() 221 BT_WARN("Prohibited Filter Type 0x%02x", type); in filter_set() 238 for (i = 0; i < ARRAY_SIZE(client->filter); i++) { in filter_add() 239 if (client->filter[i] == addr) { in filter_add() 244 for (i = 0; i < ARRAY_SIZE(client->filter); i++) { in filter_add() 245 if (client->filter[i] == BT_MESH_ADDR_UNASSIGNED) { in filter_add() 246 client->filter[i] = addr; in filter_add() [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/linux/test/ |
H A D | Makefile | 43 OBJS = $(patsubst %.c, %.o,$(filter %.c, $(SRCS))) 44 OBJS += $(patsubst %.cc,%.o,$(filter %.cc, $(SRCS))) 49 TEST_OBJS = $(patsubst %.c, %.o,$(filter %.c, $(SRCS))) 50 TEST_OBJS += $(patsubst %.cc,%.o,$(filter %.cc, $(SRCS)))
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_qdec.h | 110 * @brief States of the debounce filter enable bit. 114 …NRF_QDEC_DBFEN_DISABLE = QDEC_DBFEN_DBFEN_Disabled, /**< Mask for disabling the debounce filter. … 115 …NRF_QDEC_DBFEN_ENABLE = QDEC_DBFEN_DBFEN_Enabled /**< Mask for enabling the debounce filter. */ 197 * @brief Function for enabling the debouncing filter of the QED. 202 * @brief Function for disabling the debouncing filter of the QED. 207 * @brief Function for getting the state of the QDEC's debouncing filter. 208 * @retval NRF_QDEC_DBFEN_DISABLE If the debouncing filter is disabled. 209 * @retval NRF_QDEC_DBFEN_ENABLE If the debouncing filter is enabled.
|
/nrf52832-nimble/rt-thread/examples/ulog/ |
H A D | ulog_example.c | 48 …/* Set the test tag's level filter's level is ERROR. The DEBUG, INFO, WARNING log will stop output… in ulog_example() 53 …/* Set the example tag's level filter's level is LOG_FILTER_LVL_SILENT, the log enter silent mode.… in ulog_example() 55 … /* Set the test tag's level filter's level is WARNING. The DEBUG, INFO log will stop output. */ in ulog_example() 60 …/* Set the test tag's level filter's level is LOG_FILTER_LVL_ALL. All level log will resume output… in ulog_example()
|
/nrf52832-nimble/rt-thread/libcpu/arm/AT91SAM7S/ |
H A D | AT91SAM7S.h | 140 #define AT91C_PIO_IFDR (AT91_REG(0xFFFFF424)) /* PIOA Input Filter Disable Register */ 149 #define AT91C_PIO_IFER (AT91_REG(0xFFFFF420)) /* PIOA Input Filter Enable Register */ 158 #define AT91C_PIO_IFSR (AT91_REG(0xFFFFF428)) /* PIOA Input Filter Status Register */ 178 #define AT91C_PIOA_IFDR (AT91_REG(0xFFFFF424)) // (PIOA) Input Filter Disable Register 184 #define AT91C_PIOA_IFSR (AT91_REG(0xFFFFF428)) // (PIOA) Input Filter Status Register 185 #define AT91C_PIOA_IFER (AT91_REG(0xFFFFF420)) // (PIOA) Input Filter Enable Register 205 #define AT91C_PIOB_IFDR (AT91_REG(0xFFFFF624)) // (PIOB) Input Filter Disable Register 209 #define AT91C_PIOB_IFER (AT91_REG(0xFFFFF620)) // (PIOB) Input Filter Enable Register 210 #define AT91C_PIOB_IFSR (AT91_REG(0xFFFFF628)) // (PIOB) Input Filter Status Register
|
/nrf52832-nimble/packages/NimBLE-latest/porting/examples/linux/ |
H A D | Makefile | 51 SRC_C = $(filter %.c, $(SRC)) 52 SRC_CC = $(filter %.cc, $(SRC))
|
/nrf52832-nimble/rt-thread/components/drivers/wlan/ |
H A D | wlan_dev.h | 414 …rt_uint8_t *pattern; /* Pattern bytes used to filter eg. "\x0800" (must be in network byte ord… 490 rt_err_t (*wlan_cfg_filter)(struct rt_wlan_device *wlan, struct rt_wlan_filter *filter); 554 * wlan device filter interface 556 rt_err_t rt_wlan_dev_cfg_filter(struct rt_wlan_device *device, struct rt_wlan_filter *filter);
|
H A D | wlan_dev.c | 418 rt_err_t rt_wlan_dev_cfg_filter(struct rt_wlan_device *device, struct rt_wlan_filter *filter) in rt_wlan_dev_cfg_filter() argument 426 if (filter == RT_NULL) in rt_wlan_dev_cfg_filter() 431 result = rt_device_control(RT_DEVICE(device), RT_WLAN_CMD_CFG_FILTER, filter); in rt_wlan_dev_cfg_filter() 688 struct rt_wlan_filter *filter = args; in _rt_wlan_dev_control() local 692 err = wlan->ops->wlan_cfg_filter(wlan, filter); in _rt_wlan_dev_control()
|
/nrf52832-nimble/rt-thread/documentation/ |
H A D | Doxyfile | 677 # and *.h) to filter out the source-files in the directories. If left 733 # and *.h) to filter out the source-files in the directories. If left 752 # invoke to filter for each input file. Doxygen will invoke the filter program 753 # by executing (via popen()) the command <filter> <input-file>, where <filter> 755 # input file. Doxygen will then use the output that the filter program writes 763 # filter if there is a match. The filters are a list of the form: 764 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 770 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 771 # INPUT_FILTER) will be used to filter the input files when producing source 779 # using *.ext= (so without naming a filter). This option only has effect when [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | netif.h | 141 /** MAC Filter Actions, these are passed to a netif's igmp_mac_filter or 144 /** Delete a filter entry */ 146 /** Add a filter entry */ 322 filter table of the ethernet MAC.*/ 327 filter table of the ethernet MAC. */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/doc/doxygen/ |
H A D | lwip.Doxyfile | 807 # *.h) to filter out the source-files in the directories. 893 # *.h) to filter out the source-files in the directories. If left blank all 912 # invoke to filter for each input file. Doxygen will invoke the filter program 915 # <filter> <input-file> 917 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 918 # name of an input file. Doxygen will then use the output that the filter 922 # Note that the filter must not add or remove lines; it is applied before the 934 # filter if there is a match. The filters are a list of the form: pattern=filter 945 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 946 # INPUT_FILTER) will also be used to filter the input files that are used for [all …]
|
H A D | lwip.Doxyfile.cmake.in | 807 # *.h) to filter out the source-files in the directories. 893 # *.h) to filter out the source-files in the directories. If left blank all 912 # invoke to filter for each input file. Doxygen will invoke the filter program 915 # <filter> <input-file> 917 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 918 # name of an input file. Doxygen will then use the output that the filter 922 # Note that the filter must not add or remove lines; it is applied before the 934 # filter if there is a match. The filters are a list of the form: pattern=filter 945 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 946 # INPUT_FILTER) will also be used to filter the input files that are used for [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/doxygen/ |
H A D | lwip.Doxyfile | 797 # *.h) to filter out the source-files in the directories. 882 # *.h) to filter out the source-files in the directories. If left blank all 901 # invoke to filter for each input file. Doxygen will invoke the filter program 904 # <filter> <input-file> 906 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 907 # name of an input file. Doxygen will then use the output that the filter 911 # Note that the filter must not add or remove lines; it is applied before the 923 # filter if there is a match. The filters are a list of the form: pattern=filter 934 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 935 # INPUT_FILTER) will also be used to filter the input files that are used for [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ |
H A D | doxygen.xml | 806 # *.h) to filter out the source-files in the directories. 876 # *.h) to filter out the source-files in the directories. If left blank all 895 # invoke to filter for each input file. Doxygen will invoke the filter program 898 # <filter> <input-file> 900 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 901 # name of an input file. Doxygen will then use the output that the filter 905 # Note that the filter must not add or remove lines; it is applied before the 917 # filter if there is a match. The filters are a list of the form: pattern=filter 928 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 929 # INPUT_FILTER) will also be used to filter the input files that are used for [all …]
|
/nrf52832-nimble/rt-thread/components/utilities/logtrace/ |
H A D | log_trace.c | 160 FINSH_FUNCTION_EXPORT_ALIAS(log_trace_set_level, log_level, set the filter level of log trace); 303 /* filter by level */ in log_trace() 348 /* filter by level */ in _log_write()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | netif.h | 154 /** MAC Filter Actions, these are passed to a netif's igmp_mac_filter or 157 /** Delete a filter entry */ 159 /** Add a filter entry */ 371 filter table of the ethernet MAC.*/ 376 filter table of the ethernet MAC. */
|
/nrf52832-nimble/rt-thread/components/drivers/can/ |
H A D | can.c | 588 rt_memcpy(&can->hdr[pitem->hdr].filter, pitem, in rt_can_control() 622 rt_memset(&can->hdr[pitem->hdr].filter, 0, in rt_can_control() 838 if (can->hdr != RT_NULL && can->hdr[hdr].connected && can->hdr[hdr].filter.ind) in rt_hw_can_isr() 846 can->hdr[hdr].filter.ind(&can->parent, can->hdr[hdr].filter.args, hdr, rx_length); in rt_hw_can_isr()
|