This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| sdk:sleep-mode [2020/09/25 20:21] – created juraschek | sdk:sleep-mode [2021/07/20 10:28] (current) – fachet | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | This page shows details about the Sleep mode of the NB1601 and NB800 | + | ====== Using the Sleep Mode of the NB1601 and NB800 |
| + | |||
| + | For optimizing the power consumption you can put the NB1601 / NB800 into a deep sleep state over our SDK API. | ||
| + | |||
| + | In the Deep Sleep State the CPU is basicly not running. The only component still running is our Power Managment Chip and will consum a very low current (<1mA). Please keep in mind you still need to have power supply attached to the router in the deep sleep State. | ||
| + | |||
| + | ===== Requierements ===== | ||
| + | |||
| + | The Feature was introduce with NRSW Version 4.4.0.104 and newer. Please check our [[documentation: | ||
| + | |||
| + | You need an NB1601 Router or a NB800 HW Rev. B Router to use this Feature. | ||
| + | |||
| + | |||
| + | ===== Limitations ===== | ||
| + | |||
| + | The minimum Sleep time is defined as 60sec. | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ===== Basic Usage ===== | ||
| + | |||
| + | The basic Usage of the API is defined as follows: | ||
| + | <code c basic-sleep.are> | ||
| + | |||
| + | nb_syslog(" | ||
| + | // we will set the wakeup time in 9- | ||
| + | nb_wakeup(3600); | ||
| + | nb_syslog(" | ||
| + | |||
| + | res = nb_poweroff(); | ||
| + | if (res != 0) { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | |||
| + | </ | ||
| + | |||
| + | You can use this example code and a period timer every X hours. | ||
| + | |||
| + | ===== SMS Usage ===== | ||
| + | |||
| + | For easy triggering of the Sleep mode you can used this extended sms-control skript. Please combine it with the sms-received trigger. | ||
| + | The Command you would need to send is: | ||
| + | "sleep 10" | ||
| + | |||
| + | Where 10 is the Time in Minute after it will wake up again. | ||
| + | |||
| + | |||
| + | |||
| + | <code c sms-control-sleep.are> | ||
| + | /* DESC: This script will execute commands received by SMS. | ||
| + | * Copyright (C) 2012 NetModule AG, Switzerland | ||
| + | */ | ||
| + | |||
| + | INTERVAL | ||
| + | MAXMSG | ||
| + | MAXAGE | ||
| + | MAXLINES | ||
| + | AUTH = 1; /* perform authentication | ||
| + | ADMPWD | ||
| + | IGNORECASE | ||
| + | SENDERS | ||
| + | |||
| + | /* check if we should perform authentication */ | ||
| + | if (argc == 2 && argv[1] == " | ||
| + | AUTH = 0; | ||
| + | } | ||
| + | |||
| + | /* retrieve password */ | ||
| + | if (AUTH) { | ||
| + | if (strlen(ADMPWD) == 0) { | ||
| + | /* use configured admin password */ | ||
| + | ADMPWD = nb_config_get(" | ||
| + | if (strlen(ADMPWD) > 0) { | ||
| + | nb_syslog(" | ||
| + | } else { | ||
| + | /* not there -> use a default password instead */ | ||
| + | nb_syslog(" | ||
| + | ADMPWD = " | ||
| + | } | ||
| + | } | ||
| + | if (IGNORECASE) ADMPWD = tolower(ADMPWD); | ||
| + | } | ||
| + | |||
| + | /* parse message */ | ||
| + | string parse (string msg) | ||
| + | { | ||
| + | /* read by line */ | ||
| + | lnr = 0; | ||
| + | ishdr = 1; | ||
| + | tlnr = 0; | ||
| + | allowed = (length(SENDERS) == 0) ? 1 : 0; | ||
| + | |||
| + | lp = msg; | ||
| + | for (lnr = 0; lnr < MAXLINES && strlen(lp) > 0; lnr++) { | ||
| + | pos = strchr(lp, " | ||
| + | if (is_void(pos)) pos = strlen(lp); | ||
| + | |||
| + | line = left(lp, pos); | ||
| + | lp = substr(lp, pos + 1); | ||
| + | |||
| + | if (strlen(line) == 0) { | ||
| + | /* saw header separator */ | ||
| + | ishdr = 0; | ||
| + | continue; | ||
| + | } | ||
| + | if (ishdr) { | ||
| + | /* saw header line */ | ||
| + | if (left(line, 5) == " | ||
| + | /* check age of message */ | ||
| + | sentdate = trim(substr(line, | ||
| + | sent = strptime(sentdate, | ||
| + | |||
| + | if (!is_void(sent)) { | ||
| + | /* got a valid sent date */ | ||
| + | now = localtime(time()); | ||
| + | age = mktime(now) - mktime(sent); | ||
| + | nb_syslog(" | ||
| + | if (age > MAXAGE) { | ||
| + | nb_syslog(" | ||
| + | return ""; | ||
| + | } | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | } else if (left(line, 5) == " | ||
| + | from = substr(line, | ||
| + | if (length(SENDERS) > 0) { | ||
| + | for (s = 0; s < length(SENDERS); | ||
| + | sender = SENDERS[s]; | ||
| + | if (left(from, strlen(sender)) == sender) { | ||
| + | allowed = 1; | ||
| + | break; | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | if (allowed == 0) { | ||
| + | nb_syslog(" | ||
| + | return ""; | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | } | ||
| + | } else { | ||
| + | /* saw text line */ | ||
| + | if (IGNORECASE) line = tolower(line); | ||
| + | |||
| + | if (AUTH && tlnr == 0) { | ||
| + | /* first line of message must contain the password */ | ||
| + | if (left(line, strlen(ADMPWD)) != ADMPWD) { | ||
| + | nb_syslog(" | ||
| + | return ""; | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | } else if ((AUTH && tlnr == 1) || (!AUTH && tlnr == 0)) { | ||
| + | /* this line must contain the command */ | ||
| + | if (left(line, 6) == " | ||
| + | return " | ||
| + | } else if (left(line, 7) == " | ||
| + | return " | ||
| + | } else if (left(line, 10) == " | ||
| + | return " | ||
| + | } else if (left(line, 6) == " | ||
| + | return " | ||
| + | } else if (left(line, 6) == " | ||
| + | return left(line, 13); | ||
| + | } else if (left(line, 5) == " | ||
| + | return left(line, 13); | ||
| + | } | ||
| + | } else { | ||
| + | break; | ||
| + | } | ||
| + | tlnr++; | ||
| + | } | ||
| + | } | ||
| + | |||
| + | nb_syslog(" | ||
| + | |||
| + | return ""; | ||
| + | } | ||
| + | |||
| + | int setdio (string cmd) | ||
| + | { | ||
| + | newstate = substr(cmd, 9, 3); | ||
| + | port = substr(cmd, 7, 1); | ||
| + | |||
| + | if (port != " | ||
| + | nb_syslog(" | ||
| + | return -1; | ||
| + | } | ||
| + | if (newstate == " | ||
| + | st = 1; | ||
| + | } else if (newstate == " | ||
| + | st = 0; | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | return -1; | ||
| + | } | ||
| + | |||
| + | rc = nb_dio_set(sprintf(" | ||
| + | if (rc) { | ||
| + | nb_syslog(" | ||
| + | return -1; | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | return 0; | ||
| + | } | ||
| + | } | ||
| + | |||
| + | |||
| + | int setsleep (int minutes) | ||
| + | { | ||
| + | nb_syslog(" | ||
| + | // we will set the wakeup time in 9- | ||
| + | nb_wakeup(minutes*60); | ||
| + | nb_syslog(" | ||
| + | |||
| + | res = nb_poweroff(); | ||
| + | if (res != 0) { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | |||
| + | |||
| + | } | ||
| + | |||
| + | /* check if we got stressed */ | ||
| + | LASTFILE = "/ | ||
| + | last = 0; | ||
| + | |||
| + | fp = fopen(LASTFILE, | ||
| + | if (fp) { | ||
| + | /* we have been run at least one time */ | ||
| + | str = fread(fp, 32); | ||
| + | if (str) last = (int) str; | ||
| + | fclose(fp); | ||
| + | } | ||
| + | |||
| + | now = mktime(localtime(time())); | ||
| + | elapsed = now - last; | ||
| + | if (elapsed > 0 && elapsed < INTERVAL) { | ||
| + | nb_syslog(" | ||
| + | exit(0); | ||
| + | } | ||
| + | |||
| + | /* record timestamp */ | ||
| + | fp = fopen(LASTFILE, | ||
| + | if (fp) { | ||
| + | str = sprintf(" | ||
| + | fwrite(fp, str); | ||
| + | fclose(fp); | ||
| + | } | ||
| + | |||
| + | /* read inbox */ | ||
| + | msgs = nb_sms_list(); | ||
| + | nr_msgs = length(msgs); | ||
| + | |||
| + | if (nr_msgs == 0) { | ||
| + | nb_syslog(" | ||
| + | exit(0); | ||
| + | } | ||
| + | |||
| + | nb_syslog(" | ||
| + | |||
| + | /* track states */ | ||
| + | reboot = 0; | ||
| + | connecting = 0; | ||
| + | disconnecting = 0; | ||
| + | |||
| + | |||
| + | /* only process latest messages */ | ||
| + | start = nr_msgs - MAXMSG; | ||
| + | if (start < 0) start = 0; | ||
| + | |||
| + | for (i=start; i< | ||
| + | msg = nb_sms_retrieve(msgs[i]); | ||
| + | if (!msg) continue; | ||
| + | |||
| + | nb_syslog(" | ||
| + | i, nr_msgs, msgs[i]); | ||
| + | |||
| + | cmd = parse(msg); | ||
| + | if (cmd == " | ||
| + | nb_syslog(" | ||
| + | reboot = 1; | ||
| + | } else if (cmd == " | ||
| + | nb_syslog(" | ||
| + | if (connecting) { | ||
| + | nb_syslog(" | ||
| + | } else { | ||
| + | /* enable first wanlink */ | ||
| + | nb_config_set(" | ||
| + | connecting = 1; | ||
| + | } | ||
| + | } else if (cmd == " | ||
| + | nb_syslog(" | ||
| + | if (disconnecting) { | ||
| + | nb_syslog(" | ||
| + | } else { | ||
| + | /* disable first wanlink */ | ||
| + | nb_config_set(" | ||
| + | disconnecting = 1; | ||
| + | } | ||
| + | } else if (cmd == " | ||
| + | nb_syslog(" | ||
| + | rcpt = nb_sms_header(msgs[i], | ||
| + | if (rcpt) { | ||
| + | id = nb_sms_send(rcpt, | ||
| + | if (!id) { | ||
| + | nb_syslog(" | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | } | ||
| + | } else if (left(cmd, | ||
| + | nb_syslog(" | ||
| + | setdio(cmd); | ||
| + | } else if (left(cmd, | ||
| + | nb_syslog(" | ||
| + | setsleep(right(cmd, | ||
| + | } else { | ||
| + | nb_syslog(" | ||
| + | } | ||
| + | |||
| + | /* delete message | ||
| + | ret = nb_sms_delete(msgs[i]); | ||
| + | if (ret == 0) nb_syslog(" | ||
| + | } | ||
| + | |||
| + | if (reboot == 1) { | ||
| + | /* trigger reboot | ||
| + | nb_syslog(" | ||
| + | nb_reboot(); | ||
| + | } | ||
| + | |||
| + | exit(0); | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||