Feature/xbee cellular 3#4
Merged
Merged
Conversation
…ar C API library Summary: -------- This commit adds complete support for the XBee 3 Cellular module in the existing modular C-based XBee API framework, designed with subclassed architecture similar to XBee LR (LoRaWAN). The following major additions and improvements have been made: Features: --------- - Implemented `xbee_cellular.c` and `xbee_cellular.h` with full subclass virtual table and high-level APIs: - Cellular-specific initialization, connect, disconnect, sendData, reset, and configuration hooks. - Introduced `XBeeCellularConfigure()` for APN/SIM/Carrier setup. - Defined all necessary AT command enums (e.g., `AT_PN`, `AT_AN`, `AT_CP`, `AT_SD`). - Implemented IPv4 TX frame sending using `XBEE_API_TYPE_CELLULAR_TX_IPV4`. - Added `xbee_cellular_example.c`: - Demonstrates setup, initialization, connection, and periodic data send using XBee Cellular. - Follows same structure as the existing LR example. - Implements stubs for receive/send callbacks. - Updated `xbee_api_frames.h` and `xbee_at_cmds.h`: - Defined new AT commands and API frame types for cellular. - Updated documentation blocks for full consistency. - Extended core base logic in `xbee.c`: - Added `XBeeConfigure()` dispatch to subclass `configure()` method.
- Modified XBeeConnect to support blocking and non-blocking. In future, add support for callback for non-blocking.
- Added check in apiSendAtCommandAndGetResponse for response buffer size to prevent buffer overflow -Updated readme with XBeeCellular
Updated xbee.c unit test
… for all supported platforms
Added more common methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Merge initial implementation of xbee cellular support into main