mirror of
				https://github.com/mik3y/usb-serial-for-android
				synced 2025-10-30 09:57:19 +00:00 
			
		
		
		
	Throw exception on bad parameters to Prolific
This commit is contained in:
		
							parent
							
								
									7e9589d582
								
							
						
					
					
						commit
						275589eeb6
					
				| @ -406,6 +406,9 @@ public class ProlificSerialDriver extends CommonUsbSerialDriver { | |||||||
|         case STOPBITS_2: |         case STOPBITS_2: | ||||||
|             lineRequestData[4] = 2; |             lineRequestData[4] = 2; | ||||||
|             break; |             break; | ||||||
|  | 
 | ||||||
|  |         default: | ||||||
|  |             throw new IllegalArgumentException("Unknown stopBits value: " + stopBits); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         switch (parity) { |         switch (parity) { | ||||||
| @ -428,6 +431,9 @@ public class ProlificSerialDriver extends CommonUsbSerialDriver { | |||||||
|         case PARITY_SPACE: |         case PARITY_SPACE: | ||||||
|             lineRequestData[5] = 4; |             lineRequestData[5] = 4; | ||||||
|             break; |             break; | ||||||
|  | 
 | ||||||
|  |         default: | ||||||
|  |             throw new IllegalArgumentException("Unknown parity value: " + parity); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         lineRequestData[6] = (byte) dataBits; |         lineRequestData[6] = (byte) dataBits; | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user