chore(gbt32960): update changes
This commit is contained in:
parent
30a72f557f
commit
6b50fdcf9e
|
@ -65,7 +65,6 @@
|
|||
emqx_gateway_coap,
|
||||
emqx_gateway_lwm2m,
|
||||
emqx_gateway_exproto,
|
||||
emqx_gateway_gbt32960,
|
||||
emqx_exhook,
|
||||
emqx_bridge,
|
||||
emqx_bridge_mqtt,
|
||||
|
@ -126,7 +125,8 @@
|
|||
emqx_gcp_device,
|
||||
emqx_dashboard_rbac,
|
||||
emqx_dashboard_sso,
|
||||
emqx_audit
|
||||
emqx_audit,
|
||||
emqx_gateway_gbt32960
|
||||
],
|
||||
%% must always be of type `load'
|
||||
ce_business_apps =>
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Introduced a new gateway for vehicles to access EMQX through the GBT32960 protocol.
|
4
mix.exs
4
mix.exs
|
@ -215,7 +215,8 @@ defmodule EMQXUmbrella.MixProject do
|
|||
:emqx_gcp_device,
|
||||
:emqx_dashboard_rbac,
|
||||
:emqx_dashboard_sso,
|
||||
:emqx_audit
|
||||
:emqx_audit,
|
||||
:emqx_gateway_gbt32960
|
||||
])
|
||||
end
|
||||
|
||||
|
@ -329,7 +330,6 @@ defmodule EMQXUmbrella.MixProject do
|
|||
:emqx_gateway_coap,
|
||||
:emqx_gateway_lwm2m,
|
||||
:emqx_gateway_exproto,
|
||||
:emqx_gateway_gbt32960,
|
||||
:emqx_dashboard,
|
||||
:emqx_dashboard_sso,
|
||||
:emqx_audit,
|
||||
|
|
|
@ -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_sso") -> false;
|
||||
is_community_umbrella_app("apps/emqx_audit") -> false;
|
||||
is_community_umbrella_app("apps/emqx_gateway_gbt32960") -> false;
|
||||
is_community_umbrella_app(_) -> true.
|
||||
|
||||
is_jq_supported() ->
|
||||
|
|
Loading…
Reference in New Issue