From 496c0af226f671fea1399fe8a61e0fffaa29727c Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Mon, 23 Aug 2021 04:09:14 +0800 Subject: [PATCH] Params: set ParamKeyType: ALL to 0xFFFFFFFF (#21978) old-commit-hash: 4bbbbe5175f78eae660e7385c644f4f1392e6bdc --- selfdrive/common/params.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/common/params.h b/selfdrive/common/params.h index c83d652b67..3c9d99895f 100644 --- a/selfdrive/common/params.h +++ b/selfdrive/common/params.h @@ -13,7 +13,7 @@ enum ParamKeyType { CLEAR_ON_IGNITION_ON = 0x10, CLEAR_ON_IGNITION_OFF = 0x20, DONT_LOG = 0x40, - ALL = 0x02 | 0x04 | 0x08 | 0x10 | 0x20 | 0x40 + ALL = 0xFFFFFFFF }; class Params {