Posts: 233
	Threads: 71
	Joined: Sep 2015
	
Reputation: 
0
	 
	
	
		help me !
I use 3G: ZTE MF190 from ZTE corporation. I use LM3 but not text !, "SMS Hander" does not start "
Is it compatible?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 8413
	Threads: 45
	Joined: Jun 2015
	
Reputation: 
481
	 
	
	
		Do you have any ttyUSB serial ports in System Config / System Status window?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1807
	Threads: 7
	Joined: Jul 2015
	
Reputation: 
121
	 
	
	
		Hi,
You where missing the user lib, i added my version (user.sms) and sms handler and sms sender.
Please check now (:
BR,
Erwin
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1807
	Threads: 7
	Joined: Jul 2015
	
Reputation: 
121
	 
	
		
		
		23.04.2017, 21:07 
(This post was last modified: 23.04.2017, 21:12 by Erwin van der Zwart.)
		
	 
	
		Hi,
Ah, did not check there as it's not the best place to put it (:
Common functions are loaded in every script and you should limit the functions there to functions that are 'common' what means the functions you use in most of your scripts.
If you have functions that are used by 1 or some scripts its better to put them in a user lib and load (require) them in only the scripts you need them. This is much better for your system resources (:
BR,
Erwin
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1807
	Threads: 7
	Joined: Jul 2015
	
Reputation: 
121
	 
	
	
		Hi,
Yes all functions in common functions are available in / loaded into each script,
require('user.xxx') is loading the functions from the user lib only in the script where you call it.
So if you don't need a specific function in most of your scripts you should not put it in 'common' functions.
Basicly common functions is just a user lib that is loaded by default in all your scripts without the need of a require('') command.
BR,
Erwin