Skip to content

Commit

Permalink
v1.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludovic-Lesur committed Aug 10, 2023
1 parent 6c30198 commit 3a267c4
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 96 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.2](https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-st-s2lp/releases/tag/v1.2) - 10 Aug 2023

### Changed

* Improve **spectrum template** with new amplitude profile tables.
* Improve **radio configuration** steps.
* Simplify **FIFO threshold** management and **uplink latency** computation.
* Improve **error codes** definition.
* Rename **internal process** function.
* Use **Sigfox types** in driver.

### Fixed

* Fix **downlink reception issue** in blocking mode (flag set missing).

### Known limitations

* **LBT** not implemented.
* **External radio front-end** not supported.

## [v1.1](https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-st-s2lp/releases/tag/v1.1) - 28 Jun 2023

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The table below shows the version compatibility with the SIGFOX_EP_LIB version.

| **S2LP_RF_API** | **SIGFOX_EP_LIB** |
|:---------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------:|
| [v1.2](https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-st-s2lp/releases/tag/v1.2) | >= [v3.2](https://github.com/sigfox-tech-radio/sigfox-ep-lib/releases/tag/v3.2) |
| [v1.1](https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-st-s2lp/releases/tag/v1.1) | >= [v3.2](https://github.com/sigfox-tech-radio/sigfox-ep-lib/releases/tag/v3.2) |
| [v1.0](https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-st-s2lp/releases/tag/v1.0) | >= [v3.2](https://github.com/sigfox-tech-radio/sigfox-ep-lib/releases/tag/v3.2) |

Expand Down
3 changes: 1 addition & 2 deletions inc/manuf/s2lp_rf_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
* \brief S2LP RF driver error codes.
*******************************************************************/
typedef enum {
S2LP_RF_API_SUCCESS = RF_API_SUCCESS,
S2LP_RF_API_ERROR_NULL_PARAMETER,
S2LP_RF_API_ERROR_NULL_PARAMETER = RF_API_ERROR_LAST,
S2LP_RF_API_ERROR_BUFFER_SIZE,
S2LP_RF_API_ERROR_MODE,
S2LP_RF_API_ERROR_FREQUENCY,
Expand Down
1 change: 0 additions & 1 deletion src/board/s2lp_hw_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#include "sigfox_ep_flags.h"
#endif
// Sigfox EP library.
#include "manuf/rf_api.h"
#include "sigfox_error.h"
#include "sigfox_types.h"

Expand Down
Loading

0 comments on commit 3a267c4

Please sign in to comment.