| 142 | } |
| 143 | |
| 144 | rt_inline rt_bool_t _is_do_connect(void) |
| 145 | { |
| 146 | if ((rt_wlan_get_autoreconnect_mode() == RT_FALSE) || |
| 147 | (rt_wlan_is_connected() == RT_TRUE) || |
| 148 | (_sta_mgnt.state & RT_WLAN_STATE_CONNECTING)) |
| 149 | { |
| 150 | return RT_FALSE; |
| 151 | } |
| 152 | return RT_TRUE; |
| 153 | } |
| 154 | |
| 155 | #ifdef RT_WLAN_WORK_THREAD_ENABLE |
| 156 |
no test coverage detected