mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # This is a simple chat script based off of the one provided by Sierra Wireless
 | |
| # for CDMA connections.  It should work for both Sprint and Verizon networks.
 | |
| 
 | |
| ABORT	BUSY
 | |
| ABORT 	'NO CARRIER'
 | |
| ABORT	ERROR
 | |
| ABORT 	'NO DIAL TONE'
 | |
| ABORT 	'NO ANSWER'
 | |
| ABORT 	DELAYED
 | |
| REPORT	CONNECT
 | |
| TIMEOUT	10
 | |
| '' 		AT
 | |
| OK 		ATZ
 | |
| SAY     'Calling CDMA/EVDO'
 | |
| TIMEOUT	30
 | |
| OK		ATDT#777
 | |
| CONNECT	''
 |