chore(gbt32960): update changes

This commit is contained in:
firest 2023-11-01 19:30:10 +08:00
parent 30a72f557f
commit 6b50fdcf9e
4 changed files with 6 additions and 4 deletions

View File

@ -65,7 +65,6 @@
emqx_gateway_coap, emqx_gateway_coap,
emqx_gateway_lwm2m, emqx_gateway_lwm2m,
emqx_gateway_exproto, emqx_gateway_exproto,
emqx_gateway_gbt32960,
emqx_exhook, emqx_exhook,
emqx_bridge, emqx_bridge,
emqx_bridge_mqtt, emqx_bridge_mqtt,
@ -126,7 +125,8 @@
emqx_gcp_device, emqx_gcp_device,
emqx_dashboard_rbac, emqx_dashboard_rbac,
emqx_dashboard_sso, emqx_dashboard_sso,
emqx_audit emqx_audit,
emqx_gateway_gbt32960
], ],
%% must always be of type `load' %% must always be of type `load'
ce_business_apps => ce_business_apps =>

View File

@ -0,0 +1 @@
Introduced a new gateway for vehicles to access EMQX through the GBT32960 protocol.

View File

@ -215,7 +215,8 @@ defmodule EMQXUmbrella.MixProject do
:emqx_gcp_device, :emqx_gcp_device,
:emqx_dashboard_rbac, :emqx_dashboard_rbac,
:emqx_dashboard_sso, :emqx_dashboard_sso,
:emqx_audit :emqx_audit,
:emqx_gateway_gbt32960
]) ])
end end
@ -329,7 +330,6 @@ defmodule EMQXUmbrella.MixProject do
:emqx_gateway_coap, :emqx_gateway_coap,
:emqx_gateway_lwm2m, :emqx_gateway_lwm2m,
:emqx_gateway_exproto, :emqx_gateway_exproto,
:emqx_gateway_gbt32960,
:emqx_dashboard, :emqx_dashboard,
:emqx_dashboard_sso, :emqx_dashboard_sso,
:emqx_audit, :emqx_audit,

View File

@ -111,6 +111,7 @@ is_community_umbrella_app("apps/emqx_gcp_device") -> false;
is_community_umbrella_app("apps/emqx_dashboard_rbac") -> false; is_community_umbrella_app("apps/emqx_dashboard_rbac") -> false;
is_community_umbrella_app("apps/emqx_dashboard_sso") -> false; is_community_umbrella_app("apps/emqx_dashboard_sso") -> false;
is_community_umbrella_app("apps/emqx_audit") -> false; is_community_umbrella_app("apps/emqx_audit") -> false;
is_community_umbrella_app("apps/emqx_gateway_gbt32960") -> false;
is_community_umbrella_app(_) -> true. is_community_umbrella_app(_) -> true.
is_jq_supported() -> is_jq_supported() ->