Welcome to Tesla Motors Club
Discuss Tesla's Model S, Model 3, Model X, Model Y, Cybertruck, Roadster and More.
Register

Open Vehicle Monitor System (OVMS) - Technical Discussion

This site may earn commission on affiliate links.
I'm sure this has been asked before, so apologies but I can't find it.

At some point I changed a setting on OVMS to suppress annoying messages on my phone such as the driver's door is open. It would be useful to get alerts through again, so that I can see if there is an HVAC warning message.

Where is the setting for this? I have SMSIP enabled and I can't see anything else stopping them. Feature 14 is set to 1.
 
I'm sure this has been asked before, so apologies but I can't find it.

At some point I changed a setting on OVMS to suppress annoying messages on my phone such as the driver's door is open. It would be useful to get alerts through again, so that I can see if there is an HVAC warning message.

Where is the setting for this? I have SMSIP enabled and I can't see anything else stopping them. Feature 14 is set to 1.
Notifications are controlled by the phone. Look under SETTINGS, NOTIFICATIONS. Scroll down to OVMS.
 
No it's not this. OVMS has priority on the phone already.

The messages aren't stored under messages in the OVMS menu either.

There is a car side setting somewhere which suppresses these messages.
I have the same issue which has started 2 weeks ago. There must be something wrong in the software. This has happened in november 2015 as well and was solved with an app update.
I did not change any settings but suddenly the messages have stopped coming in. Incidently I receive one and then it will stop another couple of days.
 
FYI: here are the carbits:

// The FEATURE_CARBITS feature is a set of ON/OFF bits to control different
// miscellaneous aspects of the system. The following bits are defined:
#define FEATURE_CB_2008 0x01 // Set to 1 to mark the car as 2008/2009
#define FEATURE_CB_SAD_SMS 0x02 // Set to 1 to suppress "Access Denied" SMS
#define FEATURE_CB_SOUT_SMS 0x04 // Set to 1 to suppress all outbound SMS
#define FEATURE_CB_SVALERTS 0x08 // Set to 1 to suppress vehicle alerts
#define FEATURE_CB_SVINFOS 0x10 // Set to 1 to suppress vehicle info notifies
#define FEATURE_CB_SSMSTIME 0x20 // Set to 1 to suppress times in SMS responses
#define FEATURE_CB_SCHGSTART 0x40 // Set to 1 to send charge start notifications

That is feature #14. With modern firmware, the FEATURE_CB_2008 gets set automatically so you can really just set feature #14 to 0 to go back to default behaviour.

For completeness, here are the optin bits:

// The FEATURE_OPTIN feature is a set of ON/OFF bits to control different
// miscelaneous aspects of the system that must be opted in to. The following
// bits are defined:
#define FEATURE_OI_SPEEDO 0x01 // Set to 1 to enable digital speedo
#define FEATURE_OI_LOGDRIVES 0x02 // Set to 1 to enable logging of drives
#define FEATURE_OI_LOGCHARGE 0x04 // Set to 1 to enable logging of charges

That is feature #13. Set feature #13 to 0 to go back to default behaviour.