Fix Unused Variable Warning (#2940)
Some Debugging variables were enabled at ERROR level instead of DEBUG. Specifically `tAfter` and `tBefore`
This commit is contained in:
		
							parent
							
								
									2e32022611
								
							
						
					
					
						commit
						d2816b2f32
					
				| @ -1270,7 +1270,7 @@ i2c_err_t i2cProcQueue(i2c_t * i2c, uint32_t *readCount, uint16_t timeOutMillis) | ||||
| 
 | ||||
|     i2c->dev->ctr.trans_start=1; // go for it
 | ||||
| 
 | ||||
| #if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_ERROR | ||||
| #if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_DEBUG | ||||
|     portTickType tBefore=xTaskGetTickCount(); | ||||
| #endif | ||||
|      | ||||
| @ -1278,7 +1278,7 @@ i2c_err_t i2cProcQueue(i2c_t * i2c, uint32_t *readCount, uint16_t timeOutMillis) | ||||
|      | ||||
|     uint32_t eBits = xEventGroupWaitBits(i2c->i2c_event,EVENT_DONE,pdFALSE,pdTRUE,ticksTimeOut); | ||||
| 
 | ||||
| #if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_ERROR | ||||
| #if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_DEBUG | ||||
|     portTickType tAfter=xTaskGetTickCount(); | ||||
| #endif | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user