mirror of
https://github.com/Utyff/Zintercom.git
synced 2026-01-12 17:27:42 +03:00
init commit
This commit is contained in:
5
.clang-format
Normal file
5
.clang-format
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
# We'll use defaults from the LLVM style, but with 4 columns indentation.
|
||||||
|
BasedOnStyle: LLVM
|
||||||
|
IndentWidth: 4
|
||||||
|
ColumnLimit: 180
|
||||||
60
.gitignore
vendored
Normal file
60
.gitignore
vendored
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
# IAR C-STAT and C-RUN
|
||||||
|
# Comment this out if you use C-Stat or C-Run to compile/analyze your project
|
||||||
|
*.ewt
|
||||||
|
|
||||||
|
# IAR Debugger files
|
||||||
|
*.ewd
|
||||||
|
|
||||||
|
|
||||||
|
# IAR Settings
|
||||||
|
**/settings/*.crun
|
||||||
|
**/settings/*.dbgdt
|
||||||
|
**/settings/*.cspy
|
||||||
|
**/settings/*.cspy.*
|
||||||
|
**/settings/*.xcl
|
||||||
|
**/settings/*.dni
|
||||||
|
**/settings/*.wsdt
|
||||||
|
**/settings/*.wspos
|
||||||
|
|
||||||
|
# IAR Debug Exe
|
||||||
|
**/CoordinatorEB/Exe/
|
||||||
|
|
||||||
|
# IAR Debug List
|
||||||
|
**/CoordinatorEB/List
|
||||||
|
|
||||||
|
# IAR Debug Obj
|
||||||
|
**/CoordinatorEB/Obj/*.pbd
|
||||||
|
**/CoordinatorEB/Obj/*.pbd.*
|
||||||
|
**/CoordinatorEB/Obj/*.pbi
|
||||||
|
**/CoordinatorEB/Obj/*.pbi.*
|
||||||
|
**/CoordinatorEB/Obj/*.r51
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
**.log
|
||||||
|
|
||||||
|
# IAR backup files
|
||||||
|
Backup*
|
||||||
|
|
||||||
|
# IAR .dep files
|
||||||
|
*.dep
|
||||||
|
|
||||||
|
# Compiled Binaries
|
||||||
|
*.bin
|
||||||
|
*.elf
|
||||||
|
*.map
|
||||||
|
|
||||||
|
# Trash files
|
||||||
|
*.bak
|
||||||
|
|
||||||
|
# CC2530DB
|
||||||
|
|
||||||
|
CC2530DB/CHDTECH_DEV*
|
||||||
|
|
||||||
|
CC2530DB/Zintercom*
|
||||||
|
|
||||||
|
Source/version.c
|
||||||
|
!.vscode/
|
||||||
|
.vscode/settings.json
|
||||||
|
firmwares/*
|
||||||
|
|
||||||
|
zstack-lib
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "zstack-lib"]
|
||||||
|
path = zstack-lib
|
||||||
|
url = git@github.com:diyruz/zstack-lib.git
|
||||||
6
.release-it.yml
Normal file
6
.release-it.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
git:
|
||||||
|
requireCleanWorkingDir: false
|
||||||
|
github:
|
||||||
|
release: true
|
||||||
|
assets: ["firmwares/DIY_*.hex", "converters/DIY_*.js"]
|
||||||
|
draft: false
|
||||||
37
.vscode/c_cpp_properties.json
vendored
Normal file
37
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"configurations": [{
|
||||||
|
"name": "Mac",
|
||||||
|
"forcedInclude": ["${workspaceRoot}/source/preinclude.h"],
|
||||||
|
"defines": ["HAL_BOARD_TARGET", "HAL_I2C=TRUE", "HAL_I2C_MASTER"],
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceRoot}",
|
||||||
|
"${workspaceRoot}/BME280_driver",
|
||||||
|
"${workspaceRoot}/Source",
|
||||||
|
"${workspaceRoot}/zstack-lib",
|
||||||
|
"${env:ZSTACK_PATH}/Components/mac/include/",
|
||||||
|
"${env:ZSTACK_PATH}/Components/mt",
|
||||||
|
"${env:ZSTACK_PATH}/Components/zmac",
|
||||||
|
"${env:ZSTACK_PATH}/Components/zmac/f8w",
|
||||||
|
"${env:ZSTACK_PATH}/Components/osal/include",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/af",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/bdb",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/sec",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/sys",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/zdo",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/GP",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/nwk",
|
||||||
|
"${env:ZSTACK_PATH}/Components/stack/zcl",
|
||||||
|
"${env:ZSTACK_PATH}/Components/hal/target/CC2530EB/",
|
||||||
|
"${env:ZSTACK_PATH}/Components/hal/include/",
|
||||||
|
"${env:ZSTACK_PATH}/Components/services/saddr/",
|
||||||
|
"${env:ZSTACK_PATH}/Components/services/sdata/",
|
||||||
|
"${env:ZSTACK_PATH}/Projects/zstack/ZMain/TI2530DB",
|
||||||
|
"${env:ZSTACK_PATH}/Projects/zstack/HomeAutomation/Source"
|
||||||
|
],
|
||||||
|
"intelliSenseMode": "clang-x64",
|
||||||
|
"compilerPath": "/usr/bin/clang",
|
||||||
|
"cStandard": "c99",
|
||||||
|
"cppStandard": "c++17"
|
||||||
|
}],
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
9833
CC2530DB/GenericApp.ewp
Normal file
9833
CC2530DB/GenericApp.ewp
Normal file
File diff suppressed because it is too large
Load Diff
35
CC2530DB/GenericApp.eww
Normal file
35
CC2530DB/GenericApp.eww
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<workspace>
|
||||||
|
<project>
|
||||||
|
<path>$WS_DIR$\GenericApp.ewp</path>
|
||||||
|
</project>
|
||||||
|
<batchBuild>
|
||||||
|
<batchDefinition>
|
||||||
|
<name>ALL</name>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_Router</configuration>
|
||||||
|
</member>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_EndDevice</configuration>
|
||||||
|
</member>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_Router_CC2592</configuration>
|
||||||
|
</member>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_EndDevice_CC2592</configuration>
|
||||||
|
</member>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_Router_CC2591</configuration>
|
||||||
|
</member>
|
||||||
|
<member>
|
||||||
|
<project>GenericApp</project>
|
||||||
|
<configuration>Zintercom_EndDevice_CC2591</configuration>
|
||||||
|
</member>
|
||||||
|
</batchDefinition>
|
||||||
|
</batchBuild>
|
||||||
|
</workspace>
|
||||||
2
CC2530DB/settings/GenericApp.reggroups
Normal file
2
CC2530DB/settings/GenericApp.reggroups
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
group = "io", "P0"
|
||||||
|
group = "Unnamed2", "P1"
|
||||||
674
LICENSE
Normal file
674
LICENSE
Normal file
@@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||||
70
Source/OSAL_App.c
Normal file
70
Source/OSAL_App.c
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#include "OSAL.h"
|
||||||
|
#include "OSAL_Tasks.h"
|
||||||
|
#include "ZComDef.h"
|
||||||
|
#include "hal_drivers.h"
|
||||||
|
|
||||||
|
#include "APS.h"
|
||||||
|
#include "ZDApp.h"
|
||||||
|
#include "nwk.h"
|
||||||
|
|
||||||
|
#if defined ( MT_TASK )
|
||||||
|
#include "MT.h"
|
||||||
|
#include "MT_TASK.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "commissioning.h"
|
||||||
|
#include "factory_reset.h"
|
||||||
|
#include "Debug.h"
|
||||||
|
#include "battery.h"
|
||||||
|
|
||||||
|
#include "bdb_interface.h"
|
||||||
|
#include "zcl_app.h"
|
||||||
|
|
||||||
|
const pTaskEventHandlerFn tasksArr[] = {macEventLoop,
|
||||||
|
nwk_event_loop,
|
||||||
|
Hal_ProcessEvent,
|
||||||
|
#if defined( MT_TASK )
|
||||||
|
MT_ProcessEvent,
|
||||||
|
#endif
|
||||||
|
APS_event_loop,
|
||||||
|
ZDApp_event_loop,
|
||||||
|
zcl_event_loop,
|
||||||
|
bdb_event_loop,
|
||||||
|
zclApp_event_loop,
|
||||||
|
zclCommissioning_event_loop,
|
||||||
|
zclFactoryResetter_loop
|
||||||
|
#ifdef ZIC_BATTERY_MODE
|
||||||
|
,
|
||||||
|
zclBattery_event_loop
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
const uint8 tasksCnt = sizeof(tasksArr) / sizeof(tasksArr[0]);
|
||||||
|
uint16 *tasksEvents;
|
||||||
|
|
||||||
|
void osalInitTasks(void) {
|
||||||
|
uint8 taskID = 0;
|
||||||
|
DebugInit();
|
||||||
|
|
||||||
|
tasksEvents = (uint16 *)osal_mem_alloc(sizeof(uint16) * tasksCnt);
|
||||||
|
osal_memset(tasksEvents, 0, (sizeof(uint16) * tasksCnt));
|
||||||
|
macTaskInit(taskID++);
|
||||||
|
nwk_init(taskID++);
|
||||||
|
Hal_Init(taskID++);
|
||||||
|
#if defined( MT_TASK )
|
||||||
|
MT_TaskInit( taskID++ );
|
||||||
|
#endif
|
||||||
|
APS_Init(taskID++);
|
||||||
|
ZDApp_Init(taskID++);
|
||||||
|
zcl_Init(taskID++);
|
||||||
|
bdb_Init(taskID++);
|
||||||
|
zclApp_Init(taskID++);
|
||||||
|
zclCommissioning_Init(taskID++);
|
||||||
|
zclFactoryResetter_Init(taskID++);
|
||||||
|
#ifdef ZIC_BATTERY_MODE
|
||||||
|
zclBattery_Init(taskID++);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
*********************************************************************/
|
||||||
472
Source/hal_board_cfg.h
Normal file
472
Source/hal_board_cfg.h
Normal file
@@ -0,0 +1,472 @@
|
|||||||
|
#ifndef HAL_BOARD_CFG_H
|
||||||
|
#define HAL_BOARD_CFG_H
|
||||||
|
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Includes
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "hal_mcu.h"
|
||||||
|
#include "hal_defs.h"
|
||||||
|
#include "hal_types.h"
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* CC2590/CC2591 support
|
||||||
|
*
|
||||||
|
* Define HAL_PA_LNA_CC2590 if CC2530+CC2590EM is used
|
||||||
|
* Define HAL_PA_LNA if CC2530+CC2591EM is used
|
||||||
|
* Note that only one of them can be defined
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
#define xHAL_PA_LNA
|
||||||
|
#define xHAL_PA_LNA_CC2590
|
||||||
|
#define xHAL_PA_LNA_SE2431L
|
||||||
|
#define xHAL_PA_LNA_CC2592
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Clock Speed
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define HAL_CPU_CLOCK_MHZ 32
|
||||||
|
|
||||||
|
/* This flag should be defined if the SoC uses the 32MHz crystal
|
||||||
|
* as the main clock source (instead of DCO).
|
||||||
|
*/
|
||||||
|
#define HAL_CLOCK_CRYSTAL
|
||||||
|
|
||||||
|
/* 32 kHz clock source select in CLKCONCMD */
|
||||||
|
#if !defined (OSC32K_CRYSTAL_INSTALLED) || (defined (OSC32K_CRYSTAL_INSTALLED) && (OSC32K_CRYSTAL_INSTALLED == TRUE))
|
||||||
|
#define OSC_32KHZ 0x00 /* external 32 KHz xosc */
|
||||||
|
#else
|
||||||
|
#define OSC_32KHZ 0x80 /* internal 32 KHz rcosc */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define HAL_CLOCK_STABLE() st( while (CLKCONSTA != (CLKCONCMD_32MHZ | OSC_32KHZ)); )
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* LED Configuration
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined (HAL_BOARD_CHDTECH_DEV)
|
||||||
|
#define HAL_NUM_LEDS 4
|
||||||
|
#elif defined(HAL_BOARD_TARGET)
|
||||||
|
#define HAL_NUM_LEDS 4
|
||||||
|
#else
|
||||||
|
#error Unknown Board Indentifier
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define HAL_LED_BLINK_DELAY() st( { volatile uint32 i; for (i=0; i<0x5800; i++) { }; } )
|
||||||
|
|
||||||
|
#if defined(HAL_BOARD_TARGET)
|
||||||
|
//blue
|
||||||
|
#define LED1_BV BV(4)
|
||||||
|
#define LED1_SBIT P1_4
|
||||||
|
#define LED1_DDR P1DIR
|
||||||
|
#define LED1_POLARITY ACTIVE_LOW
|
||||||
|
//green
|
||||||
|
#define LED2_BV BV(1)
|
||||||
|
#define LED2_SBIT P1_1
|
||||||
|
#define LED2_DDR P1DIR
|
||||||
|
#define LED2_POLARITY ACTIVE_LOW
|
||||||
|
//red
|
||||||
|
#define LED3_BV BV(0)
|
||||||
|
#define LED3_SBIT P1_0
|
||||||
|
#define LED3_DDR P1DIR
|
||||||
|
#define LED3_POLARITY ACTIVE_LOW
|
||||||
|
//ex
|
||||||
|
#define LED4_BV BV(4)
|
||||||
|
#define LED4_SBIT P1_5
|
||||||
|
#define LED4_DDR P1DIR
|
||||||
|
#define LED4_POLARITY ACTIVE_LOW
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(HAL_BOARD_CHDTECH_DEV)
|
||||||
|
//blue
|
||||||
|
#define LED1_BV BV(4)
|
||||||
|
#define LED1_SBIT P1_4
|
||||||
|
#define LED1_DDR P1DIR
|
||||||
|
#define LED1_POLARITY ACTIVE_LOW
|
||||||
|
//green
|
||||||
|
#define LED2_BV BV(1)
|
||||||
|
#define LED2_SBIT P1_1
|
||||||
|
#define LED2_DDR P1DIR
|
||||||
|
#define LED2_POLARITY ACTIVE_LOW
|
||||||
|
//red
|
||||||
|
#define LED3_BV BV(0)
|
||||||
|
#define LED3_SBIT P1_0
|
||||||
|
#define LED3_DDR P1DIR
|
||||||
|
#define LED3_POLARITY ACTIVE_LOW
|
||||||
|
//ex
|
||||||
|
#define LED4_BV BV(4)
|
||||||
|
#define LED4_SBIT P1_5
|
||||||
|
#define LED4_DDR P1DIR
|
||||||
|
#define LED4_POLARITY ACTIVE_LOW
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Push Button Configuration
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define ACTIVE_LOW !
|
||||||
|
#define ACTIVE_HIGH !! /* double negation forces result to be '1' */
|
||||||
|
|
||||||
|
/* S1 */
|
||||||
|
#define PUSH1_BV BV(1)
|
||||||
|
#define PUSH1_SBIT P0_1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* OSAL NV implemented by internal flash pages.
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Flash is partitioned into 8 banks of 32 KB or 16 pages.
|
||||||
|
#define HAL_FLASH_PAGE_PER_BANK 16
|
||||||
|
// Flash is constructed of 128 pages of 2 KB.
|
||||||
|
#define HAL_FLASH_PAGE_SIZE 2048
|
||||||
|
#define HAL_FLASH_WORD_SIZE 4
|
||||||
|
|
||||||
|
// CODE banks get mapped into the XDATA range 8000-FFFF.
|
||||||
|
#define HAL_FLASH_PAGE_MAP 0x8000
|
||||||
|
|
||||||
|
// The last 16 bytes of the last available page are reserved for flash lock bits.
|
||||||
|
// NV page definitions must coincide with segment declaration in project *.xcl file.
|
||||||
|
#if defined NON_BANKED
|
||||||
|
#define HAL_FLASH_LOCK_BITS 16
|
||||||
|
#define HAL_NV_PAGE_END 30
|
||||||
|
#define HAL_NV_PAGE_CNT 2
|
||||||
|
#else
|
||||||
|
#define HAL_FLASH_LOCK_BITS 16
|
||||||
|
#define HAL_NV_PAGE_END 126
|
||||||
|
#define HAL_NV_PAGE_CNT 6
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Re-defining Z_EXTADDR_LEN here so as not to include a Z-Stack .h file.
|
||||||
|
#define HAL_FLASH_IEEE_SIZE 8
|
||||||
|
#define HAL_FLASH_IEEE_PAGE (HAL_NV_PAGE_END+1)
|
||||||
|
#define HAL_FLASH_IEEE_OSET (HAL_FLASH_PAGE_SIZE - HAL_FLASH_LOCK_BITS - HAL_FLASH_IEEE_SIZE)
|
||||||
|
#define HAL_INFOP_IEEE_OSET 0xC
|
||||||
|
|
||||||
|
#define HAL_FLASH_DEV_PRIVATE_KEY_OSET 0x7D2
|
||||||
|
#define HAL_FLASH_CA_PUBLIC_KEY_OSET 0x7BC
|
||||||
|
#define HAL_FLASH_IMPLICIT_CERT_OSET 0x78C
|
||||||
|
|
||||||
|
#define HAL_NV_PAGE_BEG (HAL_NV_PAGE_END-HAL_NV_PAGE_CNT+1)
|
||||||
|
// Used by DMA macros to shift 1 to create a mask for DMA registers.
|
||||||
|
#define HAL_NV_DMA_CH 0
|
||||||
|
#define HAL_DMA_CH_RX 3
|
||||||
|
#define HAL_DMA_CH_TX 4
|
||||||
|
|
||||||
|
#define HAL_NV_DMA_GET_DESC() HAL_DMA_GET_DESC0()
|
||||||
|
#define HAL_NV_DMA_SET_ADDR(a) HAL_DMA_SET_ADDR_DESC0((a))
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Serial Boot Loader: reserving the first 4 pages of flash and other memory in cc2530-sb.xcl.
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define HAL_SB_IMG_ADDR 0x2000
|
||||||
|
#define HAL_SB_CRC_ADDR 0x2090
|
||||||
|
// Size of internal flash less 4 pages for boot loader, 6 pages for NV, & 1 page for lock bits.
|
||||||
|
#define HAL_SB_IMG_SIZE (0x40000 - 0x2000 - 0x3000 - 0x0800)
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Macros
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* ----------- RF-frontend Connection Initialization ---------- */
|
||||||
|
#if defined HAL_PA_LNA || defined HAL_PA_LNA_CC2590 || \
|
||||||
|
defined HAL_PA_LNA_SE2431L || defined HAL_PA_LNA_CC2592
|
||||||
|
extern void MAC_RfFrontendSetup(void);
|
||||||
|
#define HAL_BOARD_RF_FRONTEND_SETUP() MAC_RfFrontendSetup()
|
||||||
|
#else
|
||||||
|
#define HAL_BOARD_RF_FRONTEND_SETUP()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* ----------- Cache Prefetch control ---------- */
|
||||||
|
#define PREFETCH_ENABLE() st( FCTL = 0x08; )
|
||||||
|
#define PREFETCH_DISABLE() st( FCTL = 0x04; )
|
||||||
|
|
||||||
|
/* ----------- Board Initialization ---------- */
|
||||||
|
#if defined (HAL_BOARD_CHDTECH_DEV) || (!defined(HAL_PA_LNA) && !defined(HAL_PA_LNA_CC2592))
|
||||||
|
#define HAL_BOARD_INIT() \
|
||||||
|
{ \
|
||||||
|
uint16 i; \
|
||||||
|
\
|
||||||
|
SLEEPCMD &= ~OSC_PD; /* turn on 16MHz RC and 32MHz XOSC */ \
|
||||||
|
while (!(SLEEPSTA & XOSC_STB)); /* wait for 32MHz XOSC stable */ \
|
||||||
|
asm("NOP"); /* chip bug workaround */ \
|
||||||
|
for (i=0; i<504; i++) asm("NOP"); /* Require 63us delay for all revs */ \
|
||||||
|
CLKCONCMD = (CLKCONCMD_32MHZ | OSC_32KHZ); /* Select 32MHz XOSC and the source for 32K clock */ \
|
||||||
|
while (CLKCONSTA != (CLKCONCMD_32MHZ | OSC_32KHZ)); /* Wait for the change to be effective */ \
|
||||||
|
SLEEPCMD |= OSC_PD; /* turn off 16MHz RC */ \
|
||||||
|
\
|
||||||
|
/* Turn on cache prefetch mode */ \
|
||||||
|
PREFETCH_ENABLE(); \
|
||||||
|
\
|
||||||
|
LED1_DDR |= LED1_BV; \
|
||||||
|
LED2_DDR |= LED2_BV; \
|
||||||
|
LED3_DDR |= LED3_BV; \
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined (HAL_PA_LNA)
|
||||||
|
#define HAL_BOARD_INIT() \
|
||||||
|
{ \
|
||||||
|
uint16 i; \
|
||||||
|
\
|
||||||
|
SLEEPCMD &= ~OSC_PD; /* turn on 16MHz RC and 32MHz XOSC */ \
|
||||||
|
while (!(SLEEPSTA & XOSC_STB)); /* wait for 32MHz XOSC stable */ \
|
||||||
|
asm("NOP"); /* chip bug workaround */ \
|
||||||
|
for (i=0; i<504; i++) asm("NOP"); /* Require 63us delay for all revs */ \
|
||||||
|
CLKCONCMD = (CLKCONCMD_32MHZ | OSC_32KHZ); /* Select 32MHz XOSC and the source for 32K clock */ \
|
||||||
|
while (CLKCONSTA != (CLKCONCMD_32MHZ | OSC_32KHZ)); /* Wait for the change to be effective */ \
|
||||||
|
SLEEPCMD |= OSC_PD; /* turn off 16MHz RC */ \
|
||||||
|
\
|
||||||
|
/* Turn on cache prefetch mode */ \
|
||||||
|
PREFETCH_ENABLE(); \
|
||||||
|
\
|
||||||
|
/* set direction for GPIO outputs */ \
|
||||||
|
/* For SE2431L PA LNA this sets ANT_SEL to output */ \
|
||||||
|
/* For CC2592 this enables LNA */ \
|
||||||
|
P1DIR |= BV(0) | BV(1); \
|
||||||
|
\
|
||||||
|
/* Set PA/LNA HGM control P0_7 */ \
|
||||||
|
P0DIR |= BV(7); \
|
||||||
|
\
|
||||||
|
\
|
||||||
|
/* setup RF frontend if necessary */ \
|
||||||
|
HAL_BOARD_RF_FRONTEND_SETUP(); \
|
||||||
|
LED1_DDR |= LED1_BV; \
|
||||||
|
LED2_DDR |= LED2_BV; \
|
||||||
|
LED3_DDR |= LED3_BV; \
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined (HAL_PA_LNA_CC2592) || defined (HAL_PA_LNA_SE2431L)
|
||||||
|
#define HAL_BOARD_INIT() \
|
||||||
|
{ \
|
||||||
|
uint16 i; \
|
||||||
|
\
|
||||||
|
SLEEPCMD &= ~OSC_PD; /* turn on 16MHz RC and 32MHz XOSC */ \
|
||||||
|
while (!(SLEEPSTA & XOSC_STB)); /* wait for 32MHz XOSC stable */ \
|
||||||
|
asm("NOP"); /* chip bug workaround */ \
|
||||||
|
for (i=0; i<504; i++) asm("NOP"); /* Require 63us delay for all revs */ \
|
||||||
|
CLKCONCMD = (CLKCONCMD_32MHZ | OSC_32KHZ); /* Select 32MHz XOSC and the source for 32K clock */ \
|
||||||
|
while (CLKCONSTA != (CLKCONCMD_32MHZ | OSC_32KHZ)); /* Wait for the change to be effective */ \
|
||||||
|
SLEEPCMD |= OSC_PD; /* turn off 16MHz RC */ \
|
||||||
|
\
|
||||||
|
/* Turn on cache prefetch mode */ \
|
||||||
|
PREFETCH_ENABLE(); \
|
||||||
|
\
|
||||||
|
/* set direction for GPIO outputs */ \
|
||||||
|
/* For SE2431L PA LNA this sets ANT_SEL to output */ \
|
||||||
|
/* For CC2592 this enables LNA */ \
|
||||||
|
P1DIR |= BV(0) | BV(1); \
|
||||||
|
\
|
||||||
|
/* Set PA/LNA HGM control P0_7 */ \
|
||||||
|
P0DIR |= BV(7); \
|
||||||
|
\
|
||||||
|
\
|
||||||
|
/* setup RF frontend if necessary */ \
|
||||||
|
HAL_BOARD_RF_FRONTEND_SETUP(); \
|
||||||
|
LED1_DDR |= LED1_BV; \
|
||||||
|
LED2_DDR |= LED2_BV; \
|
||||||
|
LED3_DDR |= LED3_BV; \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* ----------- Debounce ---------- */
|
||||||
|
#define HAL_DEBOUNCE(expr) { int i; for (i=0; i<500; i++) { if (!(expr)) i = 0; } }
|
||||||
|
|
||||||
|
/* ----------- Push Buttons ---------- */
|
||||||
|
#define HAL_PUSH_BUTTON1() (0)
|
||||||
|
#define HAL_PUSH_BUTTON2() (0)
|
||||||
|
#define HAL_PUSH_BUTTON3() (0)
|
||||||
|
#define HAL_PUSH_BUTTON4() (0)
|
||||||
|
#define HAL_PUSH_BUTTON5() (0)
|
||||||
|
#define HAL_PUSH_BUTTON6() (0)
|
||||||
|
|
||||||
|
/* ----------- LED's ---------- */
|
||||||
|
#define HAL_TURN_OFF_LED1() st( LED1_SBIT = LED1_POLARITY (0); )
|
||||||
|
#define HAL_TURN_OFF_LED2() st( LED2_SBIT = LED2_POLARITY (0); )
|
||||||
|
#define HAL_TURN_OFF_LED3() st( LED3_SBIT = LED3_POLARITY (0); )
|
||||||
|
#define HAL_TURN_OFF_LED4() st( LED4_SBIT = LED4_POLARITY (0); )
|
||||||
|
|
||||||
|
#define HAL_TURN_ON_LED1() st( LED1_SBIT = LED1_POLARITY (1); )
|
||||||
|
#define HAL_TURN_ON_LED2() st( LED2_SBIT = LED2_POLARITY (1); )
|
||||||
|
#define HAL_TURN_ON_LED3() st( LED3_SBIT = LED3_POLARITY (1); )
|
||||||
|
#define HAL_TURN_ON_LED4() st( LED4_SBIT = LED4_POLARITY (1); )
|
||||||
|
|
||||||
|
#define HAL_TOGGLE_LED1() st( if (LED1_SBIT) { LED1_SBIT = 0; } else { LED1_SBIT = 1;} )
|
||||||
|
#define HAL_TOGGLE_LED2() st( if (LED2_SBIT) { LED2_SBIT = 0; } else { LED2_SBIT = 1;} )
|
||||||
|
#define HAL_TOGGLE_LED3() st( if (LED3_SBIT) { LED3_SBIT = 0; } else { LED3_SBIT = 1;} )
|
||||||
|
#define HAL_TOGGLE_LED4() st( if (LED4_SBIT) { LED4_SBIT = 0; } else { LED4_SBIT = 1;} )
|
||||||
|
|
||||||
|
#define HAL_STATE_LED1() (LED1_POLARITY (LED1_SBIT))
|
||||||
|
#define HAL_STATE_LED2() (LED2_POLARITY (LED2_SBIT))
|
||||||
|
#define HAL_STATE_LED3() (LED3_POLARITY (LED3_SBIT))
|
||||||
|
#define HAL_STATE_LED4() (LED4_POLARITY (LED4_SBIT))
|
||||||
|
|
||||||
|
/* ----------- XNV ---------- */
|
||||||
|
#define XNV_SPI_BEGIN() st(P1_3 = 0;)
|
||||||
|
#define XNV_SPI_TX(x) st(U1CSR &= ~0x02; U1DBUF = (x);)
|
||||||
|
#define XNV_SPI_RX() U1DBUF
|
||||||
|
#define XNV_SPI_WAIT_RXRDY() st(while (!(U1CSR & 0x02));)
|
||||||
|
#define XNV_SPI_END() st(P1_3 = 1;)
|
||||||
|
|
||||||
|
// The TI reference design uses UART1 Alt. 2 in SPI mode.
|
||||||
|
#define XNV_SPI_INIT() \
|
||||||
|
st( \
|
||||||
|
/* Mode select UART1 SPI Mode as master. */\
|
||||||
|
U1CSR = 0; \
|
||||||
|
\
|
||||||
|
/* Setup for 115200 baud. */\
|
||||||
|
U1GCR = 11; \
|
||||||
|
U1BAUD = 216; \
|
||||||
|
\
|
||||||
|
/* Set bit order to MSB */\
|
||||||
|
U1GCR |= BV(5); \
|
||||||
|
\
|
||||||
|
/* Set UART1 I/O to alternate 2 location on P1 pins. */\
|
||||||
|
PERCFG |= 0x02; /* U1CFG */\
|
||||||
|
\
|
||||||
|
/* Select peripheral function on I/O pins but SS is left as GPIO for separate control. */\
|
||||||
|
P1SEL |= 0xE0; /* SELP1_[7:4] */\
|
||||||
|
/* P1.1,2,3: reset, LCD CS, XNV CS. */\
|
||||||
|
P1SEL &= ~0x0E; \
|
||||||
|
P1 |= 0x0E; \
|
||||||
|
P1_1 = 0; \
|
||||||
|
P1DIR |= 0x0E; \
|
||||||
|
\
|
||||||
|
/* Give UART1 priority over Timer3. */\
|
||||||
|
P2SEL &= ~0x20; /* PRI2P1 */\
|
||||||
|
\
|
||||||
|
/* When SPI config is complete, enable it. */\
|
||||||
|
U1CSR |= 0x40; \
|
||||||
|
/* Release XNV reset. */\
|
||||||
|
P1_1 = 1; \
|
||||||
|
)
|
||||||
|
|
||||||
|
/* ----------- Minimum safe bus voltage ---------- */
|
||||||
|
|
||||||
|
// Vdd/3 / Internal Reference X ENOB --> (Vdd / 3) / 1.15 X 127
|
||||||
|
#define VDD_2_0 74 // 2.0 V required to safely read/write internal flash.
|
||||||
|
#define VDD_2_7 100 // 2.7 V required for the Numonyx device.
|
||||||
|
#define VDD_MIN_RUN (VDD_2_0+4) // VDD_MIN_RUN = VDD_MIN_NV
|
||||||
|
#define VDD_MIN_NV (VDD_2_0+4) // 5% margin over minimum to survive a page erase and compaction.
|
||||||
|
#define VDD_MIN_GOOD (VDD_2_0+8) // 10% margin over minimum to survive a page erase and compaction.
|
||||||
|
#define VDD_MIN_XNV (VDD_2_7+5) // 5% margin over minimum to survive a page erase and compaction.
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Driver Configuration
|
||||||
|
* ------------------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Set to TRUE enable H/W TIMER usage, FALSE disable it */
|
||||||
|
#ifndef HAL_TIMER
|
||||||
|
#define HAL_TIMER FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable ADC usage, FALSE disable it */
|
||||||
|
#ifndef HAL_ADC
|
||||||
|
#define HAL_ADC TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable DMA usage, FALSE disable it */
|
||||||
|
#ifndef HAL_DMA
|
||||||
|
#define HAL_DMA TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable Flash access, FALSE disable it */
|
||||||
|
#ifndef HAL_FLASH
|
||||||
|
#define HAL_FLASH TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable AES usage, FALSE disable it */
|
||||||
|
#ifndef HAL_AES
|
||||||
|
#define HAL_AES TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAL_AES_DMA
|
||||||
|
#define HAL_AES_DMA TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable LCD usage, FALSE disable it */
|
||||||
|
#ifndef HAL_LCD
|
||||||
|
#define HAL_LCD TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable LED usage, FALSE disable it */
|
||||||
|
#ifndef HAL_LED
|
||||||
|
#define HAL_LED TRUE
|
||||||
|
#endif
|
||||||
|
#if (!defined BLINK_LEDS) && (HAL_LED == TRUE)
|
||||||
|
#define BLINK_LEDS
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable KEY usage, FALSE disable it */
|
||||||
|
#ifndef HAL_KEY
|
||||||
|
#define HAL_KEY TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Set to TRUE enable UART usage, FALSE disable it */
|
||||||
|
#ifndef HAL_UART
|
||||||
|
#if (defined ZAPP_P1) || (defined ZAPP_P2) || (defined ZTOOL_P1) || (defined ZTOOL_P2)
|
||||||
|
#define HAL_UART TRUE
|
||||||
|
#else
|
||||||
|
#define HAL_UART FALSE
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if HAL_UART
|
||||||
|
#ifndef HAL_UART_DMA
|
||||||
|
#if HAL_DMA
|
||||||
|
#if (defined ZAPP_P2) || (defined ZTOOL_P2)
|
||||||
|
#define HAL_UART_DMA 2
|
||||||
|
#else
|
||||||
|
#define HAL_UART_DMA 1
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#define HAL_UART_DMA 0
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAL_UART_ISR
|
||||||
|
#if HAL_UART_DMA // Default preference for DMA over ISR.
|
||||||
|
#define HAL_UART_ISR 0
|
||||||
|
#elif (defined ZAPP_P2) || (defined ZTOOL_P2)
|
||||||
|
#define HAL_UART_ISR 2
|
||||||
|
#else
|
||||||
|
#define HAL_UART_ISR 1
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if (HAL_UART_DMA && (HAL_UART_DMA == HAL_UART_ISR))
|
||||||
|
#error HAL_UART_DMA & HAL_UART_ISR must be different.
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Used to set P2 priority - USART0 over USART1 if both are defined.
|
||||||
|
#if ((HAL_UART_DMA == 1) || (HAL_UART_ISR == 1))
|
||||||
|
#define HAL_UART_PRIPO 0x00
|
||||||
|
#else
|
||||||
|
#define HAL_UART_PRIPO 0x40
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
#define HAL_UART_DMA 0
|
||||||
|
#define HAL_UART_ISR 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* USB is not used for CC2530 configuration */
|
||||||
|
#define HAL_UART_USB 0
|
||||||
|
#endif
|
||||||
|
/*******************************************************************************************************
|
||||||
|
*/
|
||||||
91
Source/preinclude.h
Normal file
91
Source/preinclude.h
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
#define TC_LINKKEY_JOIN
|
||||||
|
#define NV_INIT
|
||||||
|
#define NV_RESTORE
|
||||||
|
|
||||||
|
#define TP2_LEGACY_ZC
|
||||||
|
// patch sdk
|
||||||
|
// #define ZDSECMGR_TC_ATTEMPT_DEFAULT_KEY TRUE
|
||||||
|
|
||||||
|
#define NWK_AUTO_POLL
|
||||||
|
#define MULTICAST_ENABLED FALSE
|
||||||
|
|
||||||
|
#define ZCL_READ
|
||||||
|
#define ZCL_WRITE
|
||||||
|
#define ZCL_BASIC
|
||||||
|
#define ZCL_IDENTIFY
|
||||||
|
#define ZCL_REPORTING_DEVICE
|
||||||
|
|
||||||
|
#define DISABLE_GREENPOWER_BASIC_PROXY
|
||||||
|
//#define BDB_FINDING_BINDING_CAPABILITY_ENABLED 1
|
||||||
|
#define BDB_REPORTING TRUE
|
||||||
|
|
||||||
|
|
||||||
|
#define HAL_BUZZER FALSE
|
||||||
|
#define HAL_KEY TRUE
|
||||||
|
#define ISR_KEYINTERRUPT
|
||||||
|
|
||||||
|
|
||||||
|
#define HAL_LED TRUE
|
||||||
|
#define HAL_ADC FALSE
|
||||||
|
#define HAL_LCD FALSE
|
||||||
|
|
||||||
|
#define BLINK_LEDS TRUE
|
||||||
|
|
||||||
|
// one of this boards
|
||||||
|
// #define HAL_BOARD_TARGET
|
||||||
|
// #define HAL_BOARD_CHDTECH_DEV
|
||||||
|
|
||||||
|
#if !defined(HAL_BOARD_TARGET) && !defined(HAL_BOARD_CHDTECH_DEV)
|
||||||
|
#error "Board type must be defined"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAL_BOARD_TARGET)
|
||||||
|
#define HAL_KEY_P0_INPUT_PINS BV(1)
|
||||||
|
#define HAL_KEY_P2_INPUT_PINS BV(0)
|
||||||
|
//#define CO2_UART_PORT 0x00
|
||||||
|
//#define HAL_UART_DMA 1
|
||||||
|
//#define HAL_UART_ISR 0
|
||||||
|
#define INT_HEAP_LEN 2256
|
||||||
|
#elif defined(HAL_BOARD_CHDTECH_DEV)
|
||||||
|
#define HAL_UART_DMA 1
|
||||||
|
#define HAL_UART_ISR 2
|
||||||
|
//#define CO2_UART_PORT 0x01
|
||||||
|
//#define HAL_KEY_P0_INPUT_PINS 0x21//pins 1 and 2. BV(1) bv(1) pin 2. bit (1 << n)
|
||||||
|
#define HAL_KEY_P0_INPUT_PINS BV(1)
|
||||||
|
#define HAL_KEY_P2_INPUT_PINS BV(0)
|
||||||
|
#define DO_DEBUG_UART
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define FACTORY_RESET_HOLD_TIME_LONG 5000
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef DO_DEBUG_UART
|
||||||
|
#define HAL_UART TRUE
|
||||||
|
#define HAL_UART_DMA 1
|
||||||
|
#define INT_HEAP_LEN 2060
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// #define INT_HEAP_LEN (2685 - 0x4B - 0xBB-0x50-0xae)
|
||||||
|
// #define HAL_UART TRUE
|
||||||
|
// #define HAL_UART_DMA 2
|
||||||
|
#define HAL_UART TRUE
|
||||||
|
|
||||||
|
|
||||||
|
//#define BME280_32BIT_ENABLE
|
||||||
|
//i2c bme280
|
||||||
|
//#define OCM_CLK_PORT 1
|
||||||
|
//#define OCM_CLK_PIN 6
|
||||||
|
|
||||||
|
//#define OCM_DATA_PORT 1
|
||||||
|
//#define OCM_DATA_PIN 7
|
||||||
|
|
||||||
|
|
||||||
|
//#define DS18B20_PORT 0
|
||||||
|
//#define TSENS_SBIT P0_0
|
||||||
|
//#define TSENS_BV BV(0)
|
||||||
|
//#define TSENS_DIR P0DIR
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include "hal_board_cfg.h"
|
||||||
2
Source/version.h
Normal file
2
Source/version.h
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
extern const uint8 zclApp_DateCode[];
|
||||||
|
extern const char zclApp_DateCodeNT[];
|
||||||
369
Source/zcl_app.c
Normal file
369
Source/zcl_app.c
Normal file
@@ -0,0 +1,369 @@
|
|||||||
|
|
||||||
|
#include "AF.h"
|
||||||
|
#include "OSAL.h"
|
||||||
|
#include "OSAL_Clock.h"
|
||||||
|
#include "OSAL_PwrMgr.h"
|
||||||
|
#include "ZComDef.h"
|
||||||
|
#include "ZDApp.h"
|
||||||
|
#include "ZDObject.h"
|
||||||
|
#include "math.h"
|
||||||
|
|
||||||
|
#include "nwk_util.h"
|
||||||
|
#include "zcl.h"
|
||||||
|
#include "zcl_app.h"
|
||||||
|
#include "zcl_diagnostic.h"
|
||||||
|
#include "zcl_general.h"
|
||||||
|
#include "zcl_ms.h"
|
||||||
|
|
||||||
|
#include "bdb.h"
|
||||||
|
#include "bdb_interface.h"
|
||||||
|
#include "bdb_touchlink.h"
|
||||||
|
#include "bdb_touchlink_target.h"
|
||||||
|
|
||||||
|
#include "gp_interface.h"
|
||||||
|
|
||||||
|
#include "Debug.h"
|
||||||
|
|
||||||
|
#include "OnBoard.h"
|
||||||
|
|
||||||
|
#include "commissioning.h"
|
||||||
|
#include "factory_reset.h"
|
||||||
|
/* HAL */
|
||||||
|
|
||||||
|
#include "hal_drivers.h"
|
||||||
|
|
||||||
|
#include "hal_key.h"
|
||||||
|
#include "hal_led.h"
|
||||||
|
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "battery.h"
|
||||||
|
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* MACROS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* CONSTANTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* TYPEDEFS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* GLOBAL VARIABLES
|
||||||
|
*/
|
||||||
|
byte zclApp_TaskID;
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* GLOBAL FUNCTIONS
|
||||||
|
*/
|
||||||
|
//void user_delay_ms(uint32_t period);
|
||||||
|
//void user_delay_ms(uint32_t period) { MicroWait(period * 1000); }
|
||||||
|
/*********************************************************************
|
||||||
|
* LOCAL VARIABLES
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* LOCAL FUNCTIONS
|
||||||
|
*/
|
||||||
|
|
||||||
|
static void zclApp_BasicResetCB(void);
|
||||||
|
static void zclApp_RestoreAttributesFromNV(void);
|
||||||
|
static void zclApp_SaveAttributesToNV(void);
|
||||||
|
static void zclApp_HandleKeys(byte portAndAction, byte keyCode);
|
||||||
|
static ZStatus_t zclApp_ReadWriteAuthCB(afAddrType_t *srcAddr, zclAttrRec_t *pAttr, uint8 oper);
|
||||||
|
|
||||||
|
static void zclApp_Report(void);
|
||||||
|
static void zclApp_OneReport(void);
|
||||||
|
static void zclApp_ConfigInit(bool restart);
|
||||||
|
|
||||||
|
static void zclApp_BtnClick(void);
|
||||||
|
static void zclApp_RingRun(void);
|
||||||
|
static void zclApp_RingEnd(void);
|
||||||
|
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* ZCL General Profile Callback table
|
||||||
|
*/
|
||||||
|
static zclGeneral_AppCallbacks_t zclApp_CmdCallbacks = {
|
||||||
|
zclApp_BasicResetCB, // Basic Cluster Reset command
|
||||||
|
NULL, // Identify Trigger Effect command
|
||||||
|
NULL, // On/Off cluster commands
|
||||||
|
NULL, // On/Off cluster enhanced command Off with Effect
|
||||||
|
NULL, // On/Off cluster enhanced command On with Recall Global Scene
|
||||||
|
NULL, // On/Off cluster enhanced command On with Timed Off
|
||||||
|
NULL, // RSSI Location command
|
||||||
|
NULL // RSSI Location Response command
|
||||||
|
};
|
||||||
|
void zclApp_Init(byte task_id) {
|
||||||
|
HalLedSet(HAL_LED_ALL, HAL_LED_MODE_BLINK);
|
||||||
|
|
||||||
|
zclApp_RestoreAttributesFromNV();
|
||||||
|
|
||||||
|
zclApp_TaskID = task_id;
|
||||||
|
|
||||||
|
bdb_RegisterSimpleDescriptor(&zclApp_FirstEP);
|
||||||
|
|
||||||
|
zclGeneral_RegisterCmdCallbacks(zclApp_FirstEP.EndPoint, &zclApp_CmdCallbacks);
|
||||||
|
|
||||||
|
zcl_registerAttrList(zclApp_FirstEP.EndPoint, zclApp_AttrsCount, zclApp_AttrsFirstEP);
|
||||||
|
|
||||||
|
zcl_registerReadWriteCB(zclApp_FirstEP.EndPoint, NULL, zclApp_ReadWriteAuthCB);
|
||||||
|
zcl_registerForMsg(zclApp_TaskID);
|
||||||
|
RegisterForKeys(zclApp_TaskID);
|
||||||
|
|
||||||
|
LREP("Build %s \r\n", zclApp_DateCodeNT);
|
||||||
|
|
||||||
|
zclApp_ConfigInit(TIMER_START);
|
||||||
|
#if defined( ZIC_BATTERY_MODE )
|
||||||
|
ZMacSetTransmitPower(TX_PWR_PLUS_4); // set 4dBm
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
static void zclApp_HandleKeys(byte portAndAction, byte keyCode) {
|
||||||
|
LREP("zclApp_HandleKeys portAndAction=0x%X keyCode=0x%X\r\n", portAndAction, keyCode);
|
||||||
|
if (keyCode == 1) {
|
||||||
|
zclFactoryResetter_HandleKeys(portAndAction, keyCode);
|
||||||
|
}
|
||||||
|
zclCommissioning_HandleKeys(portAndAction, keyCode);
|
||||||
|
if (portAndAction & HAL_KEY_PRESS) {
|
||||||
|
if (keyCode == 1) {
|
||||||
|
LREPMaster("Key press\r\n");
|
||||||
|
osal_start_reload_timer(zclApp_TaskID, APP_BTN_CLICK_EVT, 250);
|
||||||
|
}
|
||||||
|
else if (keyCode == 2) {
|
||||||
|
LREPMaster("Ring start\r\n");
|
||||||
|
osal_start_reload_timer(zclApp_TaskID, APP_RING_RUN_EVT, 500);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (portAndAction & HAL_KEY_RELEASE) {
|
||||||
|
#if defined( ZIC_BATTERY_MODE )
|
||||||
|
zclBattery_Report();
|
||||||
|
#endif
|
||||||
|
if (keyCode == 2) {
|
||||||
|
zclApp_RingEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
uint16 zclApp_event_loop(uint8 task_id, uint16 events) {
|
||||||
|
LREP("events 0x%x \r\n", events);
|
||||||
|
if (events & SYS_EVENT_MSG) {
|
||||||
|
afIncomingMSGPacket_t *MSGpkt;
|
||||||
|
while ((MSGpkt = (afIncomingMSGPacket_t *)osal_msg_receive(zclApp_TaskID))) {
|
||||||
|
LREP("MSGpkt->hdr.event 0x%X clusterId=0x%X\r\n", MSGpkt->hdr.event, MSGpkt->clusterId);
|
||||||
|
switch (MSGpkt->hdr.event) {
|
||||||
|
case KEY_CHANGE:
|
||||||
|
zclApp_HandleKeys(((keyChange_t *)MSGpkt)->state, ((keyChange_t *)MSGpkt)->keys);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ZCL_INCOMING_MSG:
|
||||||
|
if (((zclIncomingMsg_t *)MSGpkt)->attrCmd) {
|
||||||
|
osal_mem_free(((zclIncomingMsg_t *)MSGpkt)->attrCmd);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Release the memory
|
||||||
|
osal_msg_deallocate((uint8 *)MSGpkt);
|
||||||
|
}
|
||||||
|
// return unprocessed events
|
||||||
|
return (events ^ SYS_EVENT_MSG);
|
||||||
|
}
|
||||||
|
if (events & APP_REPORT_EVT) {
|
||||||
|
LREPMaster("APP_REPORT_EVT\r\n");
|
||||||
|
zclApp_Report();
|
||||||
|
return (events ^ APP_REPORT_EVT);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (events & APP_SAVE_ATTRS_EVT) {
|
||||||
|
LREPMaster("APP_SAVE_ATTRS_EVT\r\n");
|
||||||
|
zclApp_SaveAttributesToNV();
|
||||||
|
zclApp_ConfigInit(TIMER_RESTART);
|
||||||
|
return (events ^ APP_SAVE_ATTRS_EVT);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (events & APP_BTN_CLICK_EVT) {
|
||||||
|
LREPMaster("APP_BTN_CLICK_EVT\r\n");
|
||||||
|
zclApp_BtnClick();
|
||||||
|
return (events ^ APP_BTN_CLICK_EVT);
|
||||||
|
}
|
||||||
|
if (events & APP_RING_RUN_EVT) {
|
||||||
|
LREPMaster("APP_RING_RUN_EVT\r\n");
|
||||||
|
zclApp_RingRun();
|
||||||
|
return (events ^ APP_RING_RUN_EVT);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void zclApp_RingRun(void) {
|
||||||
|
|
||||||
|
zclApp_State.RingRunStep++;
|
||||||
|
LREP("zclApp_State.RingRunStep %d\r\n", zclApp_State.RingRunStep);
|
||||||
|
LREP("zclApp_State.State %d\r\n", zclApp_State.State);
|
||||||
|
switch (zclApp_State.State) {
|
||||||
|
case Idle:
|
||||||
|
zclApp_State.State = Ring;
|
||||||
|
zclApp_OneReport();
|
||||||
|
if (zclApp_Config.ModeOpen == Drop){
|
||||||
|
zclApp_State.State = Droped;
|
||||||
|
HalLedSet(CATCH_PIN, HAL_LED_MODE_ON);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Ring:
|
||||||
|
if ((zclApp_Config.ModeOpen == Once) || (zclApp_Config.ModeOpen == Always)){
|
||||||
|
if (zclApp_State.RingRunStep > (zclApp_Config.TimeRing * 2)) {
|
||||||
|
zclApp_State.State = Talk;
|
||||||
|
HalLedSet(CATCH_PIN, HAL_LED_MODE_ON);
|
||||||
|
HalLedSet(ANSWER_PIN, HAL_LED_MODE_ON);
|
||||||
|
zclApp_OneReport();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Talk:
|
||||||
|
if ((zclApp_Config.ModeOpen == Once) || (zclApp_Config.ModeOpen == Always)){
|
||||||
|
if (zclApp_State.RingRunStep > ((zclApp_Config.TimeRing + zclApp_Config.TimeTalk) * 2)) {
|
||||||
|
zclApp_State.State = Open;
|
||||||
|
HalLedSet(OPEN_PIN, HAL_LED_MODE_ON);
|
||||||
|
zclApp_OneReport();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Open:
|
||||||
|
if ((zclApp_Config.ModeOpen == Once) || (zclApp_Config.ModeOpen == Always)){
|
||||||
|
if (zclApp_State.RingRunStep > ((zclApp_Config.TimeRing + zclApp_Config.TimeTalk+ zclApp_Config.TimeOpen) * 2)) {
|
||||||
|
zclApp_RingEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Droped:
|
||||||
|
switch (zclApp_State.RingRunStep) {
|
||||||
|
case 2:
|
||||||
|
zclApp_OneReport();
|
||||||
|
HalLedSet(ANSWER_PIN, HAL_LED_MODE_ON);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
zclApp_RingEnd();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_RingEnd(void) {
|
||||||
|
LREPMaster("Ring end\r\n");
|
||||||
|
if (zclApp_Config.ModeSound == true) {
|
||||||
|
HalLedSet(CATCH_PIN, HAL_LED_MODE_OFF);
|
||||||
|
}
|
||||||
|
HalLedSet(ANSWER_PIN, HAL_LED_MODE_OFF);
|
||||||
|
HalLedSet(OPEN_PIN, HAL_LED_MODE_OFF);
|
||||||
|
osal_stop_timerEx(zclApp_TaskID, APP_RING_RUN_EVT);
|
||||||
|
osal_clear_event(zclApp_TaskID, APP_RING_RUN_EVT);
|
||||||
|
zclApp_State.RingRunStep = 0;
|
||||||
|
zclApp_State.State = Idle;
|
||||||
|
if (zclApp_Config.ModeOpen == Once) {
|
||||||
|
zclApp_Config.ModeOpen = Never;
|
||||||
|
}
|
||||||
|
zclApp_OneReport();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_BtnClick(void) {
|
||||||
|
|
||||||
|
static uint8 currentBtnClickPhase = 0;
|
||||||
|
LREP("currentBtnClickPhase %d\r\n", currentBtnClickPhase);
|
||||||
|
switch (currentBtnClickPhase++) {
|
||||||
|
|
||||||
|
case 0:
|
||||||
|
//HalLedSet(LED_PIN, HAL_LED_MODE_ON);
|
||||||
|
HAL_TURN_ON_LED1();
|
||||||
|
if (zclApp_Config.ModeOpen < Drop) {
|
||||||
|
zclApp_Config.ModeOpen++;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
zclApp_Config.ModeOpen = Never;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
zclApp_OneReport();
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
//HalLedSet(LED_PIN, HAL_LED_MODE_OFF);
|
||||||
|
HAL_TURN_OFF_LED1();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
osal_stop_timerEx(zclApp_TaskID, APP_BTN_CLICK_EVT);
|
||||||
|
osal_clear_event(zclApp_TaskID, APP_BTN_CLICK_EVT);
|
||||||
|
currentBtnClickPhase = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_Report(void) {
|
||||||
|
zclApp_OneReport();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_OneReport(void) {
|
||||||
|
HalLedSet(LED_PIN, HAL_LED_MODE_BLINK);
|
||||||
|
bdb_RepChangedAttrValue(zclApp_FirstEP.EndPoint, ZCL_INTERCOM, ATTRID_MODEOPEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_BasicResetCB(void) {
|
||||||
|
LREPMaster("BasicResetCB\r\n");
|
||||||
|
zclApp_ResetAttributesToDefaultValues();
|
||||||
|
zclApp_SaveAttributesToNV();
|
||||||
|
}
|
||||||
|
|
||||||
|
static ZStatus_t zclApp_ReadWriteAuthCB(afAddrType_t *srcAddr, zclAttrRec_t *pAttr, uint8 oper) {
|
||||||
|
LREPMaster("AUTH CB called\r\n");
|
||||||
|
osal_start_timerEx(zclApp_TaskID, APP_SAVE_ATTRS_EVT, 2000);
|
||||||
|
return ZSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_SaveAttributesToNV(void) {
|
||||||
|
uint8 writeStatus = osal_nv_write(NW_APP_CONFIG, 0, sizeof(application_config_t), &zclApp_Config);
|
||||||
|
LREP("Saving attributes to NV write=%d\r\n", writeStatus);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_ConfigInit(bool restart) {
|
||||||
|
if (restart) {
|
||||||
|
LREP("Stop report timer event\r\n");
|
||||||
|
osal_stop_timerEx(zclApp_TaskID, APP_REPORT_EVT);
|
||||||
|
osal_clear_event(zclApp_TaskID, APP_REPORT_EVT);
|
||||||
|
}
|
||||||
|
uint32 ReportInterval = (uint32)zclApp_Config.TimeReport * (uint32)60;
|
||||||
|
LREP("Start report with interval %d seconds\r\n", ReportInterval);
|
||||||
|
osal_start_reload_timer(zclApp_TaskID, APP_REPORT_EVT, ((uint32)ReportInterval*(uint32)1000));
|
||||||
|
if (zclApp_Config.ModeSound == false) {
|
||||||
|
HalLedSet(CATCH_PIN, HAL_LED_MODE_ON);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
HalLedSet(CATCH_PIN, HAL_LED_MODE_OFF);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void zclApp_RestoreAttributesFromNV(void) {
|
||||||
|
uint8 status = osal_nv_item_init(NW_APP_CONFIG, sizeof(application_config_t), NULL);
|
||||||
|
LREP("Restoring attributes from NV status=%d \r\n", status);
|
||||||
|
if (status == NV_ITEM_UNINIT) {
|
||||||
|
uint8 writeStatus = osal_nv_write(NW_APP_CONFIG, 0, sizeof(application_config_t), &zclApp_Config);
|
||||||
|
LREP("NV was empty, writing %d\r\n", writeStatus);
|
||||||
|
}
|
||||||
|
if (status == ZSUCCESS) {
|
||||||
|
LREPMaster("Reading from NV\r\n");
|
||||||
|
osal_nv_read(NW_APP_CONFIG, 0, sizeof(application_config_t), &zclApp_Config);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
****************************************************************************/
|
||||||
164
Source/zcl_app.h
Normal file
164
Source/zcl_app.h
Normal file
@@ -0,0 +1,164 @@
|
|||||||
|
#ifndef ZCL_APP_H
|
||||||
|
#define ZCL_APP_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* INCLUDES
|
||||||
|
*/
|
||||||
|
#include "version.h"
|
||||||
|
#include "zcl.h"
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* CONSTANTS
|
||||||
|
*/
|
||||||
|
#define APP_REPORT_DELAY ((uint32)60 * (uint32)1000) // 1 minute
|
||||||
|
// Application Events
|
||||||
|
#define APP_REPORT_EVT 0x0001
|
||||||
|
#define APP_SAVE_ATTRS_EVT 0x0002
|
||||||
|
#define APP_BTN_CLICK_EVT 0x0004
|
||||||
|
#define APP_RING_RUN_EVT 0x0008
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* MACROS
|
||||||
|
*/
|
||||||
|
#define NW_APP_CONFIG 0x0402
|
||||||
|
|
||||||
|
#define R ACCESS_CONTROL_READ
|
||||||
|
// ACCESS_CONTROL_AUTH_WRITE
|
||||||
|
#define RW (R | ACCESS_CONTROL_WRITE | ACCESS_CONTROL_AUTH_WRITE)
|
||||||
|
#define RR (R | ACCESS_REPORTABLE)
|
||||||
|
|
||||||
|
//READ REPORT WRITE
|
||||||
|
#define RRW (R | ACCESS_REPORTABLE | ACCESS_CONTROL_WRITE | ACCESS_CONTROL_AUTH_WRITE)
|
||||||
|
|
||||||
|
#define BASIC ZCL_CLUSTER_ID_GEN_BASIC
|
||||||
|
#define GEN_ON_OFF ZCL_CLUSTER_ID_GEN_ON_OFF
|
||||||
|
#define POWER_CFG ZCL_CLUSTER_ID_GEN_POWER_CFG
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Intercom
|
||||||
|
#define ZCL_INTERCOM 0x0101
|
||||||
|
|
||||||
|
#define ATTRID_STATE 0x0050
|
||||||
|
#define ATTRID_MODEOPEN 0x0051
|
||||||
|
#define ATTRID_MODESOUND 0x0052
|
||||||
|
#define ATTRID_TIMERING 0x0053
|
||||||
|
#define ATTRID_TIMETALK 0x0054
|
||||||
|
#define ATTRID_TIMEOPEN 0x0055
|
||||||
|
#define ATTRID_TIMEREPORT 0x0056
|
||||||
|
|
||||||
|
#define LED_PIN HAL_LED_1
|
||||||
|
#define CATCH_PIN HAL_LED_2
|
||||||
|
#define ANSWER_PIN HAL_LED_3
|
||||||
|
#define OPEN_PIN HAL_LED_4
|
||||||
|
|
||||||
|
#define TIMER_RESTART TRUE
|
||||||
|
#define TIMER_START FALSE
|
||||||
|
|
||||||
|
#define ZIC_WORKMODE_NEVER 0
|
||||||
|
#define ZIC_WORKMODE_ONCE 1
|
||||||
|
#define ZIC_WORKMODE_ALWAYS 2
|
||||||
|
#define ZIC_WORKMODE_DROP 3
|
||||||
|
|
||||||
|
|
||||||
|
#define ZIC_WORKSTATE_IDLE 0
|
||||||
|
#define ZIC_WORKSTATE_RING 1
|
||||||
|
#define ZIC_WORKSTATE_TALK 2
|
||||||
|
#define ZIC_WORKSTATE_OPEN 3
|
||||||
|
#define ZIC_WORKSTATE_DROP 4
|
||||||
|
|
||||||
|
#define ZCL_UINT8 ZCL_DATATYPE_UINT8
|
||||||
|
#define ZCL_UINT16 ZCL_DATATYPE_UINT16
|
||||||
|
#define ZCL_INT16 ZCL_DATATYPE_INT16
|
||||||
|
#define ZCL_INT8 ZCL_DATATYPE_INT8
|
||||||
|
#define ZCL_INT32 ZCL_DATATYPE_INT32
|
||||||
|
#define ZCL_UINT32 ZCL_DATATYPE_UINT32
|
||||||
|
#define ZCL_SINGLE ZCL_DATATYPE_SINGLE_PREC
|
||||||
|
/*********************************************************************
|
||||||
|
* TYPEDEFS
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
Never,
|
||||||
|
Once,
|
||||||
|
Always,
|
||||||
|
Drop
|
||||||
|
} WorkMode_t;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
Idle,
|
||||||
|
Ring,
|
||||||
|
Talk,
|
||||||
|
Open,
|
||||||
|
Droped
|
||||||
|
} WorkState_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
WorkMode_t ModeOpen;
|
||||||
|
uint8 ModeSound;
|
||||||
|
uint8 TimeRing;
|
||||||
|
uint8 TimeTalk;
|
||||||
|
uint8 TimeOpen;
|
||||||
|
uint8 TimeReport;
|
||||||
|
} application_config_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
WorkState_t State;
|
||||||
|
uint8 RingRunStep;
|
||||||
|
} device_state_t;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
typedef enum {
|
||||||
|
UNKNOWN, SENSEAIR, MHZ19
|
||||||
|
} SensorType_t;
|
||||||
|
*/
|
||||||
|
/*********************************************************************
|
||||||
|
* VARIABLES
|
||||||
|
*/
|
||||||
|
|
||||||
|
extern SimpleDescriptionFormat_t zclApp_FirstEP;
|
||||||
|
extern CONST zclAttrRec_t zclApp_AttrsFirstEP[];
|
||||||
|
extern CONST uint8 zclApp_AttrsCount;
|
||||||
|
|
||||||
|
|
||||||
|
extern const uint8 zclApp_ManufacturerName[];
|
||||||
|
extern const uint8 zclApp_ModelId[];
|
||||||
|
extern const uint8 zclApp_PowerSource;
|
||||||
|
|
||||||
|
extern uint8 zclApp_BatteryVoltage;
|
||||||
|
extern uint8 zclApp_BatteryPercentageRemainig;
|
||||||
|
extern uint16 zclApp_BatteryVoltageRawAdc;
|
||||||
|
|
||||||
|
extern application_config_t zclApp_Config;
|
||||||
|
extern device_state_t zclApp_State;
|
||||||
|
// APP_TODO: Declare application specific attributes here
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* FUNCTIONS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Initialization for the task
|
||||||
|
*/
|
||||||
|
extern void zclApp_Init(byte task_id);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Event Process for the task
|
||||||
|
*/
|
||||||
|
extern UINT16 zclApp_event_loop(byte task_id, UINT16 events);
|
||||||
|
|
||||||
|
extern void zclApp_ResetAttributesToDefaultValues(void);
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
*********************************************************************/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ZCL_APP_H */
|
||||||
154
Source/zcl_app_data.c
Normal file
154
Source/zcl_app_data.c
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
#include "AF.h"
|
||||||
|
#include "OSAL.h"
|
||||||
|
#include "ZComDef.h"
|
||||||
|
#include "ZDConfig.h"
|
||||||
|
|
||||||
|
#include "zcl.h"
|
||||||
|
#include "zcl_general.h"
|
||||||
|
#include "zcl_ha.h"
|
||||||
|
#include "zcl_ms.h"
|
||||||
|
|
||||||
|
#include "zcl_app.h"
|
||||||
|
|
||||||
|
#include "battery.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
#include "bdb_touchlink.h"
|
||||||
|
#include "bdb_touchlink_target.h"
|
||||||
|
#include "stub_aps.h"
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* CONSTANTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define APP_DEVICE_VERSION 2
|
||||||
|
#define APP_FLAGS 0
|
||||||
|
|
||||||
|
#define APP_HWVERSION 1
|
||||||
|
#define APP_ZCLVERSION 1
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* TYPEDEFS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* MACROS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* GLOBAL VARIABLES
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Global attributes
|
||||||
|
const uint16 zclApp_clusterRevision_all = 0x0002;
|
||||||
|
|
||||||
|
// Basic Cluster
|
||||||
|
const uint8 zclApp_HWRevision = APP_HWVERSION;
|
||||||
|
const uint8 zclApp_ZCLVersion = APP_ZCLVERSION;
|
||||||
|
|
||||||
|
const uint8 zclApp_ApplicationVersion = 3;
|
||||||
|
const uint8 zclApp_StackVersion = 4;
|
||||||
|
|
||||||
|
//{lenght, 'd', 'a', 't', 'a'}
|
||||||
|
const uint8 zclApp_ManufacturerName[] = {6, 'x', 'y', 'z', 'r', 'o', 'e'};
|
||||||
|
const uint8 zclApp_ModelId[] = {13, 'D', 'I', 'Y', '_', 'Z', 'i', 'n', 't', 'e', 'r', 'c', 'o', 'm'};
|
||||||
|
|
||||||
|
#if defined(ZIC_BATTERY_MODE)
|
||||||
|
const uint8 zclApp_PowerSource = POWER_SOURCE_BATTERY;
|
||||||
|
#define DEFAULT_TimeReport 30 //minutes
|
||||||
|
#else
|
||||||
|
const uint8 zclApp_PowerSource = POWER_SOURCE_DC;
|
||||||
|
#define DEFAULT_TimeReport 1 //minutes
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define DEFAULT_ModeOpen Never
|
||||||
|
#define DEFAULT_ModeSound TRUE
|
||||||
|
|
||||||
|
#define DEFAULT_TimeRing 3 //seconds to ring, before answer
|
||||||
|
#define DEFAULT_TimeTalk 1 //seconds to talk, before open
|
||||||
|
#define DEFAULT_TimeOpen 2 //seconds to hold open
|
||||||
|
|
||||||
|
|
||||||
|
application_config_t zclApp_Config = {
|
||||||
|
.ModeOpen = DEFAULT_ModeOpen,
|
||||||
|
.ModeSound = DEFAULT_ModeSound,
|
||||||
|
.TimeRing = DEFAULT_TimeRing,
|
||||||
|
.TimeTalk = DEFAULT_TimeTalk,
|
||||||
|
.TimeOpen = DEFAULT_TimeOpen,
|
||||||
|
.TimeReport = DEFAULT_TimeReport,
|
||||||
|
};
|
||||||
|
|
||||||
|
device_state_t zclApp_State = {
|
||||||
|
.State = Idle,
|
||||||
|
.RingRunStep = 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* ATTRIBUTE DEFINITIONS - Uses REAL cluster IDs
|
||||||
|
*/
|
||||||
|
|
||||||
|
CONST zclAttrRec_t zclApp_AttrsFirstEP[] = {
|
||||||
|
{BASIC, {ATTRID_BASIC_APPL_VERSION, ZCL_UINT8, R, (void *)&zclApp_ApplicationVersion}},
|
||||||
|
{BASIC, {ATTRID_BASIC_STACK_VERSION, ZCL_UINT8, R, (void *)&zclApp_StackVersion}},
|
||||||
|
{BASIC, {ATTRID_BASIC_HW_VERSION, ZCL_UINT8, R, (void *)&zclApp_HWRevision}},
|
||||||
|
{BASIC, {ATTRID_BASIC_ZCL_VERSION, ZCL_UINT8, R, (void *)&zclApp_ZCLVersion}},
|
||||||
|
{BASIC, {ATTRID_BASIC_MANUFACTURER_NAME, ZCL_DATATYPE_CHAR_STR, R, (void *)zclApp_ManufacturerName}},
|
||||||
|
{BASIC, {ATTRID_BASIC_MODEL_ID, ZCL_DATATYPE_CHAR_STR, R, (void *)zclApp_ModelId}},
|
||||||
|
{BASIC, {ATTRID_BASIC_POWER_SOURCE, ZCL_DATATYPE_ENUM8, R, (void *)&zclApp_PowerSource}},
|
||||||
|
{BASIC, {ATTRID_CLUSTER_REVISION, ZCL_UINT16, R, (void *)&zclApp_clusterRevision_all}},
|
||||||
|
{BASIC, {ATTRID_BASIC_DATE_CODE, ZCL_DATATYPE_CHAR_STR, R, (void *)zclApp_DateCode}},
|
||||||
|
{BASIC, {ATTRID_BASIC_SW_BUILD_ID, ZCL_DATATYPE_CHAR_STR, R, (void *)zclApp_DateCode}},
|
||||||
|
|
||||||
|
#if defined(ZIC_BATTERY_MODE)
|
||||||
|
{POWER_CFG, {ATTRID_POWER_CFG_BATTERY_VOLTAGE, ZCL_UINT8, RR, (void *)&zclBattery_Voltage}},
|
||||||
|
/**
|
||||||
|
* FYI: calculating battery percentage can be tricky, since this device can be powered from 2xAA or 1xCR2032 batteries
|
||||||
|
* */
|
||||||
|
{POWER_CFG, {ATTRID_POWER_CFG_BATTERY_PERCENTAGE_REMAINING, ZCL_UINT8, RR, (void *)&zclBattery_PercentageRemainig}},
|
||||||
|
#endif
|
||||||
|
{ZCL_INTERCOM, {ATTRID_STATE, ZCL_DATATYPE_ENUM8, RRW, (void *)&zclApp_State.State}},
|
||||||
|
|
||||||
|
{ZCL_INTERCOM, {ATTRID_MODEOPEN, ZCL_DATATYPE_ENUM8, RRW, (void *)&zclApp_Config.ModeOpen}},
|
||||||
|
{ZCL_INTERCOM, {ATTRID_MODESOUND, ZCL_DATATYPE_BOOLEAN, RRW, (void *)&zclApp_Config.ModeSound}},
|
||||||
|
|
||||||
|
{ZCL_INTERCOM, {ATTRID_TIMERING, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeRing}},
|
||||||
|
{ZCL_INTERCOM, {ATTRID_TIMETALK, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeTalk}},
|
||||||
|
{ZCL_INTERCOM, {ATTRID_TIMEOPEN, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeOpen}},
|
||||||
|
{ZCL_INTERCOM, {ATTRID_TIMEREPORT, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeReport}},
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
uint8 CONST zclApp_AttrsCount = (sizeof(zclApp_AttrsFirstEP) / sizeof(zclApp_AttrsFirstEP[0]));
|
||||||
|
|
||||||
|
const cId_t zclApp_InClusterList[] = {ZCL_CLUSTER_ID_GEN_BASIC};
|
||||||
|
|
||||||
|
#define APP_MAX_INCLUSTERS (sizeof(zclApp_InClusterList) / sizeof(zclApp_InClusterList[0]))
|
||||||
|
|
||||||
|
const cId_t zclApp_OutClusterList[] = {ZCL_INTERCOM};
|
||||||
|
|
||||||
|
|
||||||
|
#define APP_MAX_OUT_CLUSTERS (sizeof(zclApp_OutClusterList) / sizeof(zclApp_OutClusterList[0]))
|
||||||
|
|
||||||
|
|
||||||
|
SimpleDescriptionFormat_t zclApp_FirstEP = {
|
||||||
|
1, // int Endpoint;
|
||||||
|
ZCL_HA_PROFILE_ID, // uint16 AppProfId[2];
|
||||||
|
ZCL_HA_DEVICEID_SIMPLE_SENSOR, // uint16 AppDeviceId[2];
|
||||||
|
APP_DEVICE_VERSION, // int AppDevVer:4;
|
||||||
|
APP_FLAGS, // int AppFlags:4;
|
||||||
|
APP_MAX_INCLUSTERS, // byte AppNumInClusters;
|
||||||
|
(cId_t *)zclApp_InClusterList, // byte *pAppInClusterList;
|
||||||
|
APP_MAX_OUT_CLUSTERS, // byte AppNumInClusters;
|
||||||
|
(cId_t *)zclApp_OutClusterList // byte *pAppInClusterList;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void zclApp_ResetAttributesToDefaultValues(void) {
|
||||||
|
zclApp_Config.ModeOpen = DEFAULT_ModeOpen;
|
||||||
|
zclApp_Config.ModeSound = DEFAULT_ModeSound;
|
||||||
|
zclApp_Config.TimeRing = DEFAULT_TimeRing;
|
||||||
|
zclApp_Config.TimeTalk = DEFAULT_TimeTalk;
|
||||||
|
zclApp_Config.TimeOpen = DEFAULT_TimeOpen;
|
||||||
|
zclApp_Config.TimeReport = DEFAULT_TimeReport;
|
||||||
|
}
|
||||||
296
converters/DIY_Zintercom.js
Normal file
296
converters/DIY_Zintercom.js
Normal file
@@ -0,0 +1,296 @@
|
|||||||
|
const {
|
||||||
|
fromZigbeeConverters,
|
||||||
|
toZigbeeConverters,
|
||||||
|
exposes
|
||||||
|
} = require('zigbee-herdsman-converters');
|
||||||
|
|
||||||
|
const e = exposes.presets;
|
||||||
|
|
||||||
|
const ZCL_DATATYPE_INT16 = 0x29;
|
||||||
|
const ZCL_DATATYPE_UINT8 = 0x20;
|
||||||
|
const ZCL_DATATYPE_UINT16 = 0x21;
|
||||||
|
const ZCL_DATATYPE_BOOLEAN = 0x10;
|
||||||
|
const ZCL_DATATYPE_INT32 = 0x2b;
|
||||||
|
const bind = async (endpoint, target, clusters) => {
|
||||||
|
for (const cluster of clusters) {
|
||||||
|
await endpoint.bind(cluster, target);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const configureReporting = {
|
||||||
|
currentPositionLiftPercentage: async (endpoint, overrides) => {
|
||||||
|
const payload = configureReportingPayload('currentPositionLiftPercentage', 1, repInterval.MAX, 1, overrides);
|
||||||
|
await endpoint.configureReporting('closuresWindowCovering', payload);
|
||||||
|
},
|
||||||
|
batteryPercentageRemaining: async (endpoint, overrides) => {
|
||||||
|
const payload = configureReportingPayload(
|
||||||
|
'batteryPercentageRemaining', repInterval.HOUR, repInterval.MAX, 0, overrides,
|
||||||
|
);
|
||||||
|
await endpoint.configureReporting('genPowerCfg', payload);
|
||||||
|
},
|
||||||
|
batteryVoltage: async (endpoint, overrides) => {
|
||||||
|
const payload = configureReportingPayload('batteryVoltage', repInterval.HOUR, repInterval.MAX, 0, overrides);
|
||||||
|
await endpoint.configureReporting('genPowerCfg', payload);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
const configureReportingPayload = (attribute, min, max, change, overrides) => {
|
||||||
|
const payload = {
|
||||||
|
attribute: attribute,
|
||||||
|
minimumReportInterval: min,
|
||||||
|
maximumReportInterval: max,
|
||||||
|
reportableChange: change,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
if (overrides) {
|
||||||
|
if (overrides.hasOwnProperty('min')) payload.minimumReportInterval = overrides.min;
|
||||||
|
if (overrides.hasOwnProperty('max')) payload.maximumReportInterval = overrides.max;
|
||||||
|
if (overrides.hasOwnProperty('change')) payload.reportableChange = overrides.change;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [payload];
|
||||||
|
};
|
||||||
|
|
||||||
|
const repInterval = {
|
||||||
|
MAX: 62000,
|
||||||
|
HOUR: 3600,
|
||||||
|
MINUTES_30: 1800,
|
||||||
|
MINUTES_15: 900,
|
||||||
|
MINUTES_10: 600,
|
||||||
|
MINUTES_5: 300,
|
||||||
|
MINUTE: 60,
|
||||||
|
};
|
||||||
|
//const ACCESS_STATE = 0b001, ACCESS_WRITE = 0b010, ACCESS_READ = 0b100;
|
||||||
|
|
||||||
|
const hass = {
|
||||||
|
co2: {
|
||||||
|
type: 'sensor',
|
||||||
|
object_id: 'co2',
|
||||||
|
discovery_payload: {
|
||||||
|
unit_of_measurement: 'ppm',
|
||||||
|
icon: 'mdi:molecule-co2',
|
||||||
|
value_template: '{{ value_json.co2 }}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
temperature: {
|
||||||
|
type: 'sensor',
|
||||||
|
object_id: 'temperature',
|
||||||
|
discovery_payload: {
|
||||||
|
unit_of_measurement: '°C',
|
||||||
|
device_class: 'temperature',
|
||||||
|
value_template: '{{ value_json.temperature }}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
humidity: {
|
||||||
|
type: 'sensor',
|
||||||
|
object_id: 'humidity',
|
||||||
|
discovery_payload: {
|
||||||
|
unit_of_measurement: '%',
|
||||||
|
device_class: 'humidity',
|
||||||
|
value_template: '{{ value_json.humidity }}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
presure: {
|
||||||
|
type: 'sensor',
|
||||||
|
object_id: 'pressure',
|
||||||
|
discovery_payload: {
|
||||||
|
unit_of_measurement: 'hPa',
|
||||||
|
device_class: 'pressure',
|
||||||
|
value_template: '{{ value_json.pressure }}',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const fz = {
|
||||||
|
diy_zintercom_config: {
|
||||||
|
cluster: 'closuresDoorLock',
|
||||||
|
type: ['attributeReport', 'readResponse'],
|
||||||
|
convert: (model, msg, publish, options, meta) => {
|
||||||
|
const result = {};
|
||||||
|
if (msg.data.hasOwnProperty(0x0050)) {
|
||||||
|
result.state = ['Idle', 'Ring', 'Talk', 'Open', 'Drop'][msg.data[0x0050]];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0051)) {
|
||||||
|
result.mode_open = ['Never', 'Once', 'Always', 'Drop'][msg.data[0x0051]];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0052)) {
|
||||||
|
result.mode_sound = ['OFF', 'ON'][msg.data[0x0052]];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0053)) {
|
||||||
|
result.time_ring = msg.data[0x0053];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0054)) {
|
||||||
|
result.time_talk = msg.data[0x0054];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0055)) {
|
||||||
|
result.time_open = msg.data[0x0055];
|
||||||
|
}
|
||||||
|
if (msg.data.hasOwnProperty(0x0056)) {
|
||||||
|
result.time_report = msg.data[0x0056];
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
const tz = {
|
||||||
|
diy_zintercom_config: {
|
||||||
|
key: ['state', 'mode_open', 'mode_sound', 'time_ring', 'time_talk', 'time_open', 'time_report'],
|
||||||
|
convertSet: async (entity, key, rawValue, meta) => {
|
||||||
|
const lookup = {
|
||||||
|
'OFF': 0x00,
|
||||||
|
'ON': 0x01,
|
||||||
|
};
|
||||||
|
const modeOpenLookup = {
|
||||||
|
'Never': '0',
|
||||||
|
'Once': '1',
|
||||||
|
'Always': '2',
|
||||||
|
'Drop': '3',
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
let value = lookup.hasOwnProperty(rawValue) ? lookup[rawValue] : parseInt(rawValue, 10);
|
||||||
|
|
||||||
|
if (key == 'mode_open') {
|
||||||
|
value = modeOpenLookup.hasOwnProperty(rawValue) ? modeOpenLookup[rawValue] : parseInt(rawValue, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
const payloads = {
|
||||||
|
mode_open: {0x0051: {value, type: 0x30}},
|
||||||
|
mode_sound: {0x0052: {value, type: 0x10}},
|
||||||
|
time_ring: {0x0053: {value, type: 0x20}},
|
||||||
|
time_talk: {0x0054: {value, type: 0x20}},
|
||||||
|
time_open: {0x0055: {value, type: 0x20}},
|
||||||
|
time_report: {0x0056: {value, type: 0x20}},
|
||||||
|
};
|
||||||
|
|
||||||
|
await entity.write('closuresDoorLock', payloads[key]);
|
||||||
|
return {
|
||||||
|
state: {[key]: rawValue},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
convertGet: async (entity, key, meta) => {
|
||||||
|
const payloads = {
|
||||||
|
state: ['closuresDoorLock', 0x0050],
|
||||||
|
mode_open: ['closuresDoorLock', 0x0051],
|
||||||
|
mode_sound: ['closuresDoorLock', 0x0052],
|
||||||
|
time_ring: ['closuresDoorLock', 0x0053],
|
||||||
|
time_talk: ['closuresDoorLock', 0x0054],
|
||||||
|
time_open: ['closuresDoorLock', 0x0055],
|
||||||
|
time_report: ['closuresDoorLock', 0x0056],
|
||||||
|
};
|
||||||
|
await entity.read(payloads[key][0], [payloads[key][1]]);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
const device = {
|
||||||
|
zigbeeModel: ['DIY_Zintercom'],
|
||||||
|
model: 'DIY_Zintercom',
|
||||||
|
vendor: 'xyzroe',
|
||||||
|
description: '[Intercom Auto Opener]',
|
||||||
|
supports: '',
|
||||||
|
//homeassistant: [hass.temperature, hass.presure, hass.humidity, hass.co2],
|
||||||
|
fromZigbee: [
|
||||||
|
/*
|
||||||
|
fromZigbeeConverters.temperature,
|
||||||
|
fromZigbeeConverters.humidity,
|
||||||
|
fromZigbeeConverters.co2,
|
||||||
|
fromZigbeeConverters.pressure,
|
||||||
|
*/
|
||||||
|
fromZigbeeConverters.battery,
|
||||||
|
fz.diy_zintercom_config,
|
||||||
|
],
|
||||||
|
toZigbee: [
|
||||||
|
toZigbeeConverters.factory_reset,
|
||||||
|
tz.diy_zintercom_config,
|
||||||
|
],
|
||||||
|
meta: {
|
||||||
|
configureKey: 1,
|
||||||
|
},
|
||||||
|
configure: async (device, coordinatorEndpoint) => {
|
||||||
|
const firstEndpoint = device.getEndpoint(1);
|
||||||
|
|
||||||
|
//await bind(firstEndpoint, coordinatorEndpoint, ['msCO2', 'closuresDoorLock', 'genOnOff']);
|
||||||
|
|
||||||
|
await bind(firstEndpoint, coordinatorEndpoint, ['closuresDoorLock', 'genPowerCfg']);
|
||||||
|
const overides = {min: 0, max: 3600, change: 0};
|
||||||
|
await configureReporting.batteryVoltage(firstEndpoint, overides);
|
||||||
|
await configureReporting.batteryPercentageRemaining(firstEndpoint, overides);
|
||||||
|
/*
|
||||||
|
if (device.applicationVersion < 3) { // Legacy PM2 firmwares
|
||||||
|
const payload = [{
|
||||||
|
attribute: 'batteryPercentageRemaining',
|
||||||
|
minimumReportInterval: 0,
|
||||||
|
maximumReportInterval: 3600,
|
||||||
|
reportableChange: 0,
|
||||||
|
}, {
|
||||||
|
attribute: 'batteryVoltage',
|
||||||
|
minimumReportInterval: 0,
|
||||||
|
maximumReportInterval: 3600,
|
||||||
|
reportableChange: 0,
|
||||||
|
}];
|
||||||
|
await firstEndpoint.configureReporting('genPowerCfg', payload);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
const msBindPayload = [{
|
||||||
|
attribute: 'measuredValue',
|
||||||
|
minimumReportInterval: 0,
|
||||||
|
maximumReportInterval: 3600,
|
||||||
|
reportableChange: 0,
|
||||||
|
}];
|
||||||
|
await firstEndpoint.configureReporting('msCO2', msBindPayload);
|
||||||
|
*/
|
||||||
|
|
||||||
|
const payload = [{
|
||||||
|
attribute: {
|
||||||
|
ID: 0x0050,
|
||||||
|
type: 0x30,
|
||||||
|
},
|
||||||
|
minimumReportInterval: 0,
|
||||||
|
maximumReportInterval: 3600,
|
||||||
|
reportableChange: 0,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
await firstEndpoint.configureReporting('closuresDoorLock', payload);
|
||||||
|
/**/
|
||||||
|
/*
|
||||||
|
await firstEndpoint.configureReporting('msTemperatureMeasurement', msBindPayload);
|
||||||
|
await firstEndpoint.configureReporting('msRelativeHumidity', msBindPayload);
|
||||||
|
|
||||||
|
const pressureBindPayload = [{
|
||||||
|
attribute: 'scaledValue',
|
||||||
|
minimumReportInterval: 0,
|
||||||
|
maximumReportInterval: 3600,
|
||||||
|
reportableChange: 0,
|
||||||
|
}];
|
||||||
|
await firstEndpoint.configureReporting('msPressureMeasurement', pressureBindPayload);
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
exposes: [
|
||||||
|
//exposes.numeric('co2', ACCESS_STATE).withUnit('ppm'),
|
||||||
|
e.battery(),
|
||||||
|
exposes.enum('state', exposes.access.STATE_GET, ['Idle', 'Ring', 'Talk', 'Open', 'Drop'])
|
||||||
|
.withDescription('Current state'),
|
||||||
|
exposes.enum('mode_open', exposes.access.ALL, ['Never', 'Once', 'Always', 'Drop'])
|
||||||
|
.withDescription('Auto open mode'),
|
||||||
|
exposes.binary('mode_sound', exposes.access.ALL, 'ON', 'OFF')
|
||||||
|
.withDescription('Sound mode'),
|
||||||
|
exposes.numeric('time_ring', exposes.access.ALL).withUnit('sec')
|
||||||
|
.withDescription('Time to ring'),
|
||||||
|
exposes.numeric('time_talk', exposes.access.ALL).withUnit('sec')
|
||||||
|
.withDescription('Time to "speak" before open'),
|
||||||
|
exposes.numeric('time_open', exposes.access.ALL).withUnit('sec')
|
||||||
|
.withDescription('Time to "hold open button"'),
|
||||||
|
exposes.numeric('time_report', exposes.access.ALL).withUnit('min')
|
||||||
|
.withDescription('Reporting interval'),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = device;
|
||||||
30
ver.py
Normal file
30
ver.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
from datetime import datetime
|
||||||
|
from os.path import dirname, join
|
||||||
|
cwd = dirname(__file__)
|
||||||
|
now = datetime.now()
|
||||||
|
dt_string = now.strftime("%d/%m/%Y %H:%M")
|
||||||
|
print("date and time =", dt_string)
|
||||||
|
with open(join(cwd, './Source/version.c'), 'w') as f:
|
||||||
|
chars = ["'{0}'".format(char) for char in dt_string]
|
||||||
|
f.write("""
|
||||||
|
#ifndef ZCL_APP_VERSION_H
|
||||||
|
#define ZCL_APP_VERSION_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
f.write('#include "version.h"\n')
|
||||||
|
code = """const uint8 zclApp_DateCode[] = {{ {0}, {1} }};\n""".format(len(chars), ', '.join(chars))
|
||||||
|
f.write(code)
|
||||||
|
code = """const char zclApp_DateCodeNT[] = \"{0}\";\n""".format(dt_string)
|
||||||
|
f.write(code)
|
||||||
|
f.write("""
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ZCL_APP_VERSION_H */
|
||||||
|
""")
|
||||||
Reference in New Issue
Block a user