1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 09:45:33 +03:00

Add MSP2_INAV_TZ and MSP2_INAV_SET_TZ MSP commands

MSPv2 only, defined as 0x1001 and 0x1002
This commit is contained in:
Alberto García Hierro 2017-09-10 19:40:20 +01:00
parent 5e6658b9d9
commit 622e4bf7dd
2 changed files with 11 additions and 1 deletions

View file

@ -1333,6 +1333,10 @@ static bool mspFcProcessOutCommand(uint16_t cmdMSP, sbuf_t *dst, mspPostProcessF
} }
break; break;
case MSP2_INAV_TZ:
sbufWriteU16(dst, (uint16_t)timeConfig()->tz_offset);
break;
default: default:
return false; return false;
} }
@ -2128,6 +2132,10 @@ static mspResult_e mspFcProcessInCommand(uint16_t cmdMSP, sbuf_t *src)
} }
break; break;
case MSP2_INAV_SET_TZ:
timeConfigMutable()->tz_offset = (int16_t)sbufReadU16(src);
break;
default: default:
return MSP_RESULT_ERROR; return MSP_RESULT_ERROR;
} }

View file

@ -15,4 +15,6 @@
* along with INAV. If not, see <http://www.gnu.org/licenses/>. * along with INAV. If not, see <http://www.gnu.org/licenses/>.
*/ */
//#define MSP2_INAV_STATUS 0x1000 //#define MSP2_INAV_STATUS 0x1000
#define MSP2_INAV_TZ 0x1001 //out message Gets the TZ offset for the local time (returns: minutes(i16))
#define MSP2_INAV_SET_TZ 0x1002 //in message Sets the TZ offset for the local time (args: minutes(i16))