Skip to content

Commit

Permalink
Fix wrong implementation of AT+PORT command
Browse files Browse the repository at this point in the history
  • Loading branch information
beegee-tokyo committed Apr 30, 2023
1 parent 2593081 commit 28c59ce
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ Arduino library for RAKWireless WisBlock Core modules that takes all the LoRaWAN

# Release Notes

## 2.0.5 Fix new AT command
- Fix wrong implementation of AT+PORT command

## 2.0.4 Add AT command
- Add AT command to change fPort when using LoRaWAN. Thanks to @xoseperez

## 2.0.3 Fix value overflow
- Fix value overflow in AT command AT+MASK

## 2.0.2 Fix P2P bandwidths
- Fix wrong mapping for RUI3 bandwidths to WisBlock API bandwidths
- Change status output (separate LoRaWAN and P2P)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,8 @@ AT Command functions: Taylor Lee ([email protected])
# Changelog
[Code releases](CHANGELOG.md)
- 2023-04-30
- Added option to set the LoRaWAN port using the AT command set. Thanks to @xoseperez
- Added option to set the LoRaWAN port using the AT command set. Thanks to @xoseperez## 2.0.5 Fix new AT command
- Fix wrong implementation of AT+PORT command
- 2023-04-07
- Fix value overflow in AT command AT+MASK
- 2023-03-18
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "WisBlock-API-V2",
"version": "2.0.4",
"version": "2.0.5",
"keywords": [
"lora",
"Semtech",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=WisBlock-API-V2
version=2.0.4
version=2.0.5
author=Bernd Giesecke <[email protected]>
maintainer=Bernd Giesecke <[email protected]>
sentence=API for WisBlock Core module
Expand Down
2 changes: 1 addition & 1 deletion src/at_cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2214,7 +2214,7 @@ static atcmd_t g_at_cmd_list[] = {
// Custom AT commands
{"+STATUS", "Status, Show LoRaWAN status", at_query_status, NULL, NULL, "R"},
{"+SENDINT", "Send interval, Get or Set the automatic send interval", at_query_sendint, at_exec_sendint, NULL, "RW"},
{"+PORT", "Get or Set the Port=[1..223]", at_query_port, at_exec_port, NULL},
{"+PORT", "Get or Set the Port=[1..223]", at_query_port, at_exec_port, NULL, "RW"},
};
/**
Expand Down

0 comments on commit 28c59ce

Please sign in to comment.