mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Merge branch 'integration' into memory_api
This commit is contained in:
		
							
								
								
									
										2
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							| @@ -156,7 +156,7 @@ jobs: | |||||||
|           . venv/bin/activate |           . venv/bin/activate | ||||||
|           pytest -vv --cov-report=xml --tb=native -n auto tests --ignore=tests/integration/ |           pytest -vv --cov-report=xml --tb=native -n auto tests --ignore=tests/integration/ | ||||||
|       - name: Upload coverage to Codecov |       - name: Upload coverage to Codecov | ||||||
|         uses: codecov/codecov-action@v5.4.3 |         uses: codecov/codecov-action@v5.5.0 | ||||||
|         with: |         with: | ||||||
|           token: ${{ secrets.CODECOV_TOKEN }} |           token: ${{ secrets.CODECOV_TOKEN }} | ||||||
|       - name: Save Python virtual environment cache |       - name: Save Python virtual environment cache | ||||||
|   | |||||||
| @@ -495,6 +495,13 @@ bool BLEClientBase::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_ | |||||||
|       break; |       break; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     case ESP_GATTC_UNREG_FOR_NOTIFY_EVT: { | ||||||
|  |       if (this->conn_id_ != param->unreg_for_notify.conn_id) | ||||||
|  |         return false; | ||||||
|  |       this->log_gattc_event_("UNREG_FOR_NOTIFY"); | ||||||
|  |       break; | ||||||
|  |     } | ||||||
|  |  | ||||||
|     default: |     default: | ||||||
|       // ideally would check all other events for matching conn_id |       // ideally would check all other events for matching conn_id | ||||||
|       ESP_LOGD(TAG, "[%d] [%s] Event %d", this->connection_index_, this->address_str_.c_str(), event); |       ESP_LOGD(TAG, "[%d] [%s] Event %d", this->connection_index_, this->address_str_.c_str(), event); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user