Support Forums
Logger won't sleep

Hello I have a DT85 which will not sleep. It has external power and I have set registers P15=3 and P17=300 but it stays on between 4 hour uploads. I see that if there incomplete jobs entered it will not sleep. How would I see these and how to delete these? Is there another reason for it not going to sleep
I have an Identical machine which is sleeping no problem.
Program as follows any help would be greatly appreciated

BEGIN"CHEVIO04"
'==========================================================
'Initial Set Up
'Create Reset Function button
FUNCTION1="Reset Counters"{SDI12SEND 5 "0RU,Z=Y"}
'activate SDI-12 continuous mode
SDI12SEND 5 "0XU,M=R!"
'manual reset command =M manual =A Auto reset after read
SDI12SEND 5 "0RU,Z=A!"
'Wind Measurements averaged over 1 hr
' SDI12SEND 5 "0WU,I=3600,A=3600!"
'APN
PROFILE MODEM APN=internet
PROFILE MODEM_SESSION DDNS_ENABLE=YES
PROFILE MODEM_SESSION DDNS_SERVER_URI=datacarter.co.nz/nic/update.php
PROFILE MODEM_SESSION DDNS_SERVER_PORT=80
PROFILE MODEM_SESSION DDNS_ACCOUNT=nul
PROFILE MODEM_SESSION DDNS_PASSWORD=nul
PROFILE MODEM_SESSION DDNS_HOST_NAME=cheviotp21

'3=allow sleep when power on
P15=3
'delay before sleep seconds
P17=300
'DD/MM/YYYY
P31=1
'HH:MM
P39=0
/n/c/u/D/T
'data separator
P22=44
'time decimal places
P41=0

LOGON
'==========================================================
'Schedule A
'Logs 5 Mb of data, overwrites when full
'Logs every 60 minutes
'==========================================================
RA(DATA:OV:5MB)3600s
'Viasala on SDI 5
5SDI12(AD0,R102,CM,"Av Wind Dir~Deg")
5SDI12(R105,CM,"Av Wind Speed~m/s")
'5SDI12(R106,CM,"Max Wind Speed~m/s")
5SDI12(R201,CM,"Air Temp~Deg")
5SDI12(R202,CM,"Rel Humidity~%RH")
5SDI12(R203,CM,"Atm Press~hPa")
5SDI12(R301,CM,"Rain Accum~mm")
5SDI12(R304,CM,"Hail Accum~h/cm2")
'Soil Probes on SDI 6
6SDI12(AD0,R303,"Soil Temp#1")
6SDI12(AD0,R301,"VWC#1 M^3/M^3",FF3)
7SDI12(AD0,R303,"Soil Temp#2")
7SDI12(AD0,R301,"VWC#2 M^3/M^3",FF3)
8SDI12(AD0,R303,"Soil Temp#3")
8SDI12(AD0,R301,"VWC#3 M^3/M^3",FF3)
VEXT("battery v")
'==========================================================
'Schedule K
'FTP on schedule K at 1 hour
RK4H LOGOFFK
DO{COPYD format=free merge=N ID=1 start=NEW dest=ftp:/xxxxxxxxxxxxxxxxxxxxx/httpdocs%2Fcheviotp21/}
END

Hello I have a DT85 which will not sleep. It has external power and I have set registers P15=3 and P17=300 but it stays on between 4 hour uploads. I see that if there incomplete jobs entered it will not sleep. How would I see these and how to delete these? Is there another reason for it not going to sleep I have an Identical machine which is sleeping no problem. Program as follows any help would be greatly appreciated BEGIN"CHEVIO04" '========================================================== 'Initial Set Up 'Create Reset Function button FUNCTION1="Reset Counters"{SDI12SEND 5 "0RU,Z=Y"} 'activate SDI-12 continuous mode SDI12SEND 5 "0XU,M=R!" 'manual reset command =M manual =A Auto reset after read SDI12SEND 5 "0RU,Z=A!" 'Wind Measurements averaged over 1 hr ' SDI12SEND 5 "0WU,I=3600,A=3600!" 'APN PROFILE MODEM APN=internet PROFILE MODEM_SESSION DDNS_ENABLE=YES PROFILE MODEM_SESSION DDNS_SERVER_URI=datacarter.co.nz/nic/update.php PROFILE MODEM_SESSION DDNS_SERVER_PORT=80 PROFILE MODEM_SESSION DDNS_ACCOUNT=nul PROFILE MODEM_SESSION DDNS_PASSWORD=nul PROFILE MODEM_SESSION DDNS_HOST_NAME=cheviotp21 '3=allow sleep when power on P15=3 'delay before sleep seconds P17=300 'DD/MM/YYYY P31=1 'HH:MM P39=0 /n/c/u/D/T 'data separator P22=44 'time decimal places P41=0 LOGON '========================================================== 'Schedule A 'Logs 5 Mb of data, overwrites when full 'Logs every 60 minutes '========================================================== RA(DATA:OV:5MB)3600s 'Viasala on SDI 5 5SDI12(AD0,R102,CM,"Av Wind Dir~Deg") 5SDI12(R105,CM,"Av Wind Speed~m/s") '5SDI12(R106,CM,"Max Wind Speed~m/s") 5SDI12(R201,CM,"Air Temp~Deg") 5SDI12(R202,CM,"Rel Humidity~%RH") 5SDI12(R203,CM,"Atm Press~hPa") 5SDI12(R301,CM,"Rain Accum~mm") 5SDI12(R304,CM,"Hail Accum~h/cm2") 'Soil Probes on SDI 6 6SDI12(AD0,R303,"Soil Temp#1") 6SDI12(AD0,R301,"VWC#1 M^3/M^3",FF3) 7SDI12(AD0,R303,"Soil Temp#2") 7SDI12(AD0,R301,"VWC#2 M^3/M^3",FF3) 8SDI12(AD0,R303,"Soil Temp#3") 8SDI12(AD0,R301,"VWC#3 M^3/M^3",FF3) VEXT("battery v") '========================================================== 'Schedule K 'FTP on schedule K at 1 hour RK4H LOGOFFK DO{COPYD format=free merge=N ID=1 start=NEW dest=ftp:/xxxxxxxxxxxxxxxxxxxxx/httpdocs%2Fcheviotp21/} END

Good morning MLCarter,

I think it might be something to do with the way you have set sleep mode.
You have set P17 to 5 minutes, so if the logger has any activity on the network then it will stay awake for 5 minutes from that point.
There generally is a lot of traffic on a network and when connected to a network the dataTaker is generally awake so it can respond to any network inquiries.

Check your Profile Modem_Session settings to see if you have the Key Timing_Control set to off.
e.g PROFILE MODEM_SESSION TIMING_CONTROL="OFF"

This should allow the modem to turn off when not transmitting data.

Cheers,
Roger

Good morning MLCarter, I think it might be something to do with the way you have set sleep mode. You have set P17 to 5 minutes, so if the logger has any activity on the network then it will stay awake for 5 minutes from that point. There generally is a lot of traffic on a network and when connected to a network the dataTaker is generally awake so it can respond to any network inquiries. Check your Profile Modem_Session settings to see if you have the Key Timing_Control set to off. e.g PROFILE MODEM_SESSION TIMING_CONTROL="OFF" This should allow the modem to turn off when not transmitting data. Cheers, Roger

Thanks Roger,

Yes I added
PROFILE MODEM_SESSION MIN_DURATION_s=300
PROFILE MODEM_SESSION TIMING_CONTROL=OFF

Which has fixed it, it is sleeping between uploads.

However here seems to be an old connection which seems to wake it about every 10 minutes, could this be a connection which was set up with the web interface and is still there? Can you suggest how to get rid of this please.
I tried a HRESET but it is still happening

Thanks Roger, Yes I added PROFILE MODEM_SESSION MIN_DURATION_s=300 PROFILE MODEM_SESSION TIMING_CONTROL=OFF Which has fixed it, it is sleeping between uploads. However here seems to be an old connection which seems to wake it about every 10 minutes, could this be a connection which was set up with the web interface and is still there? Can you suggest how to get rid of this please. I tried a HRESET but it is still happening

Good morning MLCarter,

If the modem is off then there are no TCP/IP connections.
Check your profile setting to see if there is any thing to wake it up.

Cheers,
Roger

Good morning MLCarter, If the modem is off then there are no TCP/IP connections. Check your profile setting to see if there is any thing to wake it up. Cheers, Roger

Hello Roger,

see there are global settings that can be set from the web interface(including modem/dns settings etc). I have found them stored in user/config.dcx. Do these over ride the current job settings. In there the timing_control is set to ALWAYS

Can I edit the config.dxc file and FTP it back?

Regards Mark

Hello Roger, see there are global settings that can be set from the web interface(including modem/dns settings etc). I have found them stored in user/config.dcx. Do these over ride the current job settings. In there the timing_control is set to ALWAYS Can I edit the config.dxc file and FTP it back? Regards Mark

Good afternoon Mark,

Save your configuration file.
Open a command window.
Send the following commands

DelAllJobs 'Clear all jobs and their data from the logger
FactoryDefaults ' Reset the logger back to factory defaults (This reset all profile settings.)

Then load up the configuration check the profile setting are correct and test it. Warning it will load up all the settings from the previous configurations including those you didn't want.
If it doesn't work the run the commands again and redo the dEX configuration from the start. This way you have a known starting point.

Cheers,
Roger

Good afternoon Mark, Save your configuration file. Open a command window. Send the following commands DelAllJobs 'Clear all jobs and their data from the logger FactoryDefaults ' Reset the logger back to factory defaults (This reset all profile settings.) Then load up the configuration check the profile setting are correct and test it. Warning it will load up all the settings from the previous configurations including those you didn't want. If it doesn't work the run the commands again and redo the dEX configuration from the start. This way you have a known starting point. Cheers, Roger

Hello Roger,

I tried that but still it is doing a DNS hookup approx every 30 mins (varying and not exactly) and trying to do an ftp hookup which has a missing password. I can't see where this is coming from in the dEX. Could it be an alarm? I see p130 of the manual an action channel could this be the source? How could I get rid of this?
It is doing its scheduled 4 hr ftp upload no problem
Please I'm trying to do this remotely which a slow modem connection, is there a config file I could alter and upload

All Sorted now it was data from previous sessions which had not been cleared, FTP password had been incorrect.
SESSION CLEAR fixed it

Hello Roger, I tried that but still it is doing a DNS hookup approx every 30 mins (varying and not exactly) and trying to do an ftp hookup which has a missing password. I can't see where this is coming from in the dEX. Could it be an alarm? I see p130 of the manual an action channel could this be the source? How could I get rid of this? It is doing its scheduled 4 hr ftp upload no problem Please I'm trying to do this remotely which a slow modem connection, is there a config file I could alter and upload All Sorted now it was data from previous sessions which had not been cleared, FTP password had been incorrect. SESSION CLEAR fixed it
28
6
2
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft