-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RX Filtering Addresses #9
Comments
The Anaren CC110L library had the hardware message filtering implemented.
|
See examples at CC1310: Does EasyLink_enableRxAddrFilter() filter on the destination address or the source address? and CC1310: EasyLink_enableRxAddrFilter not filtering on E2E forum. Calling the dedicated function from |
Based on the documentation provided by TI and help from E2E forum, I managed to implement address management. Actually, addresses are managed by the receiving radios which filter incoming messages. How to proceed? Should I implement a separate library or update the |
Title has been changed from Setting Destination Addresses to RX Filtering Addresses to reflect the underlying technology used by sub-1 GHz. |
The idea is the concentrator sends a message to a specific node based on its MAC 15.4 address.
The example provided for the CC1310 and CC1350 set the destination address to
0xaa
.The rfEasyLinkRx Example provides the explanations about the destination address
0xaa
.The EasyLink API reference details the destination address is 64-bit long, perfect to match the MAC 15.4 address
FCFG1_O_MAC_15_4_0
andFCFG1_O_MAC_15_4_1
.However, the EasyLink Sub-1 GHz communication library reference page at Energia.nu does not mention this option.
How to implement it?
The text was updated successfully, but these errors were encountered: