Home
last modified time | relevance | path

Searched refs:enabled (Results 1 – 25 of 37) sorted by relevance

12

/components/drivers/misc/
A Dadc.c48 if (cmd == RT_ADC_CMD_ENABLE && adc->ops->enabled) in _adc_control()
50 result = adc->ops->enabled(adc, (rt_int8_t)(rt_base_t)args, RT_TRUE); in _adc_control()
52 else if (cmd == RT_ADC_CMD_DISABLE && adc->ops->enabled) in _adc_control()
54 result = adc->ops->enabled(adc, (rt_int8_t)(rt_base_t)args, RT_FALSE); in _adc_control()
136 if (dev->ops->enabled != RT_NULL) in rt_adc_enable()
138 result = dev->ops->enabled(dev, channel, RT_TRUE); in rt_adc_enable()
153 if (dev->ops->enabled != RT_NULL) in rt_adc_disable()
155 result = dev->ops->enabled(dev, channel, RT_FALSE); in rt_adc_disable()
182 result = dev->ops->enabled(dev, channel, RT_TRUE); in rt_adc_voltage()
188 result = dev->ops->enabled(dev, channel, RT_FALSE); in rt_adc_voltage()
A Ddac.c45 if (cmd == RT_DAC_CMD_ENABLE && dac->ops->enabled) in _dac_control()
47 result = dac->ops->enabled(dac, (rt_uint32_t)args); in _dac_control()
49 else if (cmd == RT_DAC_CMD_DISABLE && dac->ops->enabled) in _dac_control()
118 if (dev->ops->enabled != RT_NULL) in rt_dac_enable()
120 result = dev->ops->enabled(dev, channel); in rt_dac_enable()
/components/drivers/led/
A Dled.c23 rt_bool_t enabled; member
160 btimer->enabled = RT_FALSE; in rt_led_register()
240 if (btimer && btimer->enabled) in rt_led_set_state()
249 if (err == -RT_ENOSYS && btimer && !btimer->enabled) in rt_led_set_state()
251 btimer->enabled = RT_TRUE; in rt_led_set_state()
255 else if (btimer && btimer->enabled) in rt_led_set_state()
263 btimer->enabled = RT_FALSE; in rt_led_set_state()
/components/drivers/usb/cherryusb/platform/rtthread/
A Dusb_check.c24 #error RT_USING_CACHE must be enabled in this chip
30 #warning CONFIG_USB_DCACHE_ENABLE must be enabled if you do not config nocache ram
/components/drivers/include/drivers/
A Dadc.h76 rt_err_t (*enabled)(struct rt_adc_device *device, rt_int8_t channel, rt_bool_t enabled); member
A Ddev_pin.h218 rt_err_t (*pin_irq_enable)(struct rt_device *device, rt_base_t pin, rt_uint8_t enabled);
291 rt_err_t rt_pin_irq_enable(rt_base_t pin, rt_uint8_t enabled);
A Dusb_device.h51 func->enabled == RT_FALSE) \
54 func->enabled = RT_TRUE; \
59 func->enabled == RT_TRUE) \
61 func->enabled = RT_FALSE; \
181 rt_bool_t enabled; member
A Ddac.h74 rt_err_t (*enabled)(struct rt_dac_device *device, rt_uint32_t channel); member
A Dthermal.h85 rt_bool_t enabled; member
/components/utilities/ulog/
A Dulog.h26 void ulog_output_lock_enabled(rt_bool_t enabled);
83 void ulog_async_output_enabled(rt_bool_t enabled);
A Dulog.c229 void ulog_output_lock_enabled(rt_bool_t enabled) in ulog_output_lock_enabled() argument
231 ulog.output_lock_enabled = enabled; in ulog_output_lock_enabled()
1417 void ulog_async_output_enabled(rt_bool_t enabled) argument
1419 ulog.async_enabled = enabled;
/components/drivers/spi/sfud/src/
A Dsfud.c73 static sfud_err set_write_enabled(const sfud_flash *flash, bool enabled);
74 static sfud_err set_4_byte_address_mode(sfud_flash *flash, bool enabled);
887 static sfud_err set_write_enabled(const sfud_flash *flash, bool enabled) { argument
893 if (enabled) {
906 if (enabled && (register_status & SFUD_STATUS_REGISTER_WEL) == 0) {
909 } else if (!enabled && (register_status & SFUD_STATUS_REGISTER_WEL) != 0) {
928 static sfud_err set_4_byte_address_mode(sfud_flash *flash, bool enabled) { argument
940 if (enabled) {
949 flash->addr_in_4_byte = enabled ? true : false;
950 SFUD_DEBUG("%s 4-Byte addressing mode success.", enabled ? "Enter" : "Exit");
[all …]
/components/drivers/pin/
A Ddev_pin.c125 rt_err_t rt_pin_irq_enable(rt_base_t pin, rt_uint8_t enabled) in rt_pin_irq_enable() argument
130 return _hw_pin.ops->pin_irq_enable(&_hw_pin.parent, pin, enabled); in rt_pin_irq_enable()
A Ddev_pin_dm.c133 rt_uint8_t enabled) in pin_api_irq_enable() argument
139 return gpio->ops->pin_irq_enable(&gpio->parent, pin - gpio->pin_start, enabled); in pin_api_irq_enable()
/components/drivers/thermal/
A Dthermal.c271 zdev->enabled = RT_TRUE; in rt_thermal_zone_device_register()
567 zdev->enabled = RT_FALSE; in rt_thermal_zone_device_update()
571 zdev->enabled = RT_TRUE; in rt_thermal_zone_device_update()
697 if (!zdev->enabled) in rt_thermal_zone_device_update()
/components/drivers/virtio/
A Dvirtio_gpu.h129 rt_uint32_t enabled; member
/components/net/lwip/lwip-1.4.1/doc/
A Dsnmp_agent.txt24 This is a required MIB, so this is always enabled.
161 when the SNMP_PRIVATE_MIB is enabled the .private tree
/components/net/lwip/lwip-2.0.3/doc/doxygen/
A Dlwip.Doxyfile296 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
306 # When enabled doxygen tries to link words that correspond to documented
393 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
477 # section is generated. This option has no effect if EXTRACT_ALL is enabled.
485 # has no effect if EXTRACT_ALL is enabled.
1545 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1566 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1578 # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1595 # which will return the search results when EXTERNAL_SEARCH is enabled.
1605 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
[all …]
/components/net/lwip/lwip-2.1.2/doc/doxygen/
A Dlwip.Doxyfile296 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
315 # When enabled doxygen tries to link words that correspond to documented
402 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
486 # section is generated. This option has no effect if EXTRACT_ALL is enabled.
494 # has no effect if EXTRACT_ALL is enabled.
1556 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1577 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1589 # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1606 # which will return the search results when EXTERNAL_SEARCH is enabled.
1616 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
[all …]
A Dlwip.Doxyfile.cmake.in296 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
315 # When enabled doxygen tries to link words that correspond to documented
402 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
486 # section is generated. This option has no effect if EXTRACT_ALL is enabled.
494 # has no effect if EXTRACT_ALL is enabled.
1556 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1577 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1589 # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1606 # which will return the search results when EXTERNAL_SEARCH is enabled.
1616 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
[all …]
/components/dfs/dfs_v1/filesystems/elmfat/
A Dff.h81 #error exFAT needs to be enabled when enable 64-bit LBA
/components/dfs/dfs_v2/filesystems/elmfat/
A Dff.h81 #error exFAT needs to be enabled when enable 64-bit LBA
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A DPPPD_FOLLOWUP17 are receiving data from peer, can be enabled by setting PPP_LCP_ADAPTIVE
434 …5-03-24 - pppd: Fix ccp_cilen calculated size if both deflate_correct and deflate_draft are enabled
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A DPPPD_FOLLOWUP17 are receiving data from peer, can be enabled by setting PPP_LCP_ADAPTIVE
434 …5-03-24 - pppd: Fix ccp_cilen calculated size if both deflate_correct and deflate_draft are enabled
/components/utilities/
A DKconfig225 Otherwise, only the test cases that are explicitly enabled will be run.

Completed in 41 milliseconds

12