SERIAL_STATS_* features not supported on USBCON targets (#9127)
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							2db666e99a
						
					
				
				
					commit
					554e577676
				
			| @@ -463,6 +463,7 @@ void advance_command_queue() { | |||||||
|         card.closefile(); |         card.closefile(); | ||||||
|         SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED); |         SERIAL_PROTOCOLLNPGM(MSG_FILE_SAVED); | ||||||
|  |  | ||||||
|  |         #ifndef USBCON | ||||||
|           #if ENABLED(SERIAL_STATS_DROPPED_RX) |           #if ENABLED(SERIAL_STATS_DROPPED_RX) | ||||||
|             SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped()); |             SERIAL_ECHOLNPAIR("Dropped bytes: ", customizedSerial.dropped()); | ||||||
|           #endif |           #endif | ||||||
| @@ -470,6 +471,7 @@ void advance_command_queue() { | |||||||
|           #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED) |           #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED) | ||||||
|             SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued()); |             SERIAL_ECHOLNPAIR("Max RX Queue Size: ", customizedSerial.rxMaxEnqueued()); | ||||||
|           #endif |           #endif | ||||||
|  |         #endif // !USBCON | ||||||
|  |  | ||||||
|         ok_to_send(); |         ok_to_send(); | ||||||
|       } |       } | ||||||
|   | |||||||
| @@ -275,8 +275,8 @@ | |||||||
|   #elif TX_BUFFER_SIZE && (TX_BUFFER_SIZE < 2 || TX_BUFFER_SIZE > 256 || !IS_POWER_OF_2(TX_BUFFER_SIZE)) |   #elif TX_BUFFER_SIZE && (TX_BUFFER_SIZE < 2 || TX_BUFFER_SIZE > 256 || !IS_POWER_OF_2(TX_BUFFER_SIZE)) | ||||||
|     #error "TX_BUFFER_SIZE must be 0, a power of 2 greater than 1, and no greater than 256." |     #error "TX_BUFFER_SIZE must be 0, a power of 2 greater than 1, and no greater than 256." | ||||||
|   #endif |   #endif | ||||||
| #elif ENABLED(SERIAL_XON_XOFF) | #elif ENABLED(SERIAL_XON_XOFF) || ENABLED(SERIAL_STATS_MAX_RX_QUEUED) || ENABLED(SERIAL_STATS_DROPPED_RX) | ||||||
|   #error "SERIAL_XON_XOFF is not supported on USB-native AVR devices." |   #error "SERIAL_XON_XOFF and SERIAL_STATS_* features not supported on USB-native AVR devices." | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| /** | /** | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user