Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Releases: beegee-tokyo/WisBlock-API

Add AT Command

30 Apr 05:07
Compare
Choose a tag to compare

Add AT Command to set fPort for LoRaWAN. Thanks to @xoseperez

Add Cayenne LPP and cleanup AT commands

05 Dec 04:45
Compare
Choose a tag to compare

1.1.18 Add Cayenne LPP and cleanup AT commands

  • Add WisBlock extended Cayenne LPP to make it easier to use from examples
  • Replace AT command SENDFREQ with SENDINT to make it's meaning easier to understand (use word interval instead of frequency)

Get RAK11200 & RAK11310 to work (mostly)

16 Oct 09:43
Compare
Choose a tag to compare
1.1.17

Move ESP32 WiFi includes to avoid conflict with RP2040

Small improvements

05 Jun 02:37
Compare
Choose a tag to compare
  • Make AT commands accept lower and upper case
  • AT+BAT=? returns battery level in volt instead of 0 - 254
  • BLE name changed to part of DevEUI for easier recognition of a device
  • Change ADC sampling time to 10 us for better accuracy

Remove external NV memory support

11 May 07:24
Compare
Choose a tag to compare

Removed support for external NV memory. Better to keep this on application level

Add support for external NV memory

18 Apr 02:15
Compare
Choose a tag to compare

Add read and write functions for external NV memory. In WisBlock API, the external NV memory is used to store the LoRa/LoRaWAN credentials. The credentials are stored starting from address 0 (or 1st sector if it is Flash memory).

Fix LoRa P2P bug

03 Apr 10:01
Compare
Choose a tag to compare

In LoRa P2P the automatic sending did not work because g_lpwan_has_joined stayed on false.

Fix timer bug

01 Mar 12:23
Compare
Choose a tag to compare

If timer is restarted with a new time, there was a bug that actually stopped the timer

Improve AT commands, fix long sleep problem

24 Feb 13:01
Compare
Choose a tag to compare
  • Change handling of user AT commands for more flexibility
  • Define alternate pdMS_TO_TICKS that casts uint64_t for long intervals due to limitation in nrf52840 BSP
  • Switch from using SoftwareTimer for nRF52 to using xTimer due to above problem

Fix P2P bugs

20 Feb 12:16
Compare
Choose a tag to compare
  • If auto join for LPWAN is disabled, LoRa P2P mode is not working. Fixed.
  • Change response of AT+P2P=? to show bandwidth instead of index number
  • Thanks at @Kongduino for finding both problems.