This SX126X RF API is a low level implementation example of the Sigfox EP library, showing the manuf/rf_api.c
file implementation for the SX1261 SX1262 transceivers from Semtech.
Warning
The resulting radio performances of your device strongly depends on your hardware design (schematic, PCB routing, crystal oscillator placement, good RF practices, etc...). Sigfox certification remains mandatory whatever the software embedded in your device (including the Sigfox End-Point library and its implementation examples).
The table below shows the versions compatibility between this radio example and the Sigfox End-Point library.
SX126X_RF_API | EP_LIB |
---|---|
v2.0 | >= v4.0 |
v1.3 | v3.6 |
v1.2 | v3.5 |
v1.1 | v3.2 to v3.4 |
v1.0 | v3.2 to v3.4 |
This radio example inherits all the Sigfox End-Point library flags and can be optimized accordingly.
The SIGFOX_EP_LOW_LEVEL_OPEN_CLOSE
flag must be enabled to use this example.
The SX126X RF API is based on the official SX126x driver from Semtech. This driver exposes a functional interface to configure the chip registers, which is used to perform the Sigfox uplink modulation and optional downlink reception. It relies on low level functions (called board drivers) which need to be implemented to run on your specific hardware. There are divided in 2 groups:
- sx126x_hal : low level functions of the SX126X driver from Semtech (registers access through SPI).
- SX126X_HW_API : additional hardware dependent functions required to get a generic RF API implementation of the SX126X.
The templates are located in the src/board
folder.
The best way to embed the SX126X RF API example into your project is to use a Git submodule, in a similar way to the library. The radio driver will be seen as a sub-repository with independant history. It will be much easier to upgrade the radio driver or to switch between versions when necessary, by using the common git pull
and git checkout
commands within the sigfox-ep-rf-api-semtech-sx126x
folder.
To add the SX126X RF API submodule, go to your project location and run the following commands:
mkdir lib
cd lib/
git submodule add https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-semtech-sx126x.git
This will clone the SX126X RF API repository. At project level, you can commit the submodule creation with the following commands:
git commit --message "Add Sigfox SX126X RF API submodule."
git push
With the submodule, you can easily:
- Update the radio driver to the latest version:
cd lib/sigfox-ep-rf-api-semtech-sx126x/
git pull
git checkout master
- Use a specific release:
cd lib/sigfox-ep-rf-api-semtech-sx126x/
git pull
git checkout <tag>
You can download or clone any release of the SX126X RF API example and copy all files into your project.
git clone https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-semtech-sx126x.git
You can download or clone any release of the SX126X RF API example and copy all files into your project. If you do not plan to change your compilation flags in the future, you can perform a precompilation step before copying the file in your project. The precompilation will remove all preprocessor directives according to your flags selection, in order to produce a more readable code. Then you can copy the new files into your project.
git clone https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-semtech-sx126x.git
To perform the precompilation, you have to install cmake
and unifdef
tools, and run the following commands:
cd sigfox-ep-rf-api-semtech-sx126x/
mkdir build
cd build/
cmake -DSIGFOX_EP_LIB_DIR=<sigfox-ep-lib path> \
-DSIGFOX_EP_RC1_ZONE=ON \
-DSIGFOX_EP_RC2_ZONE=ON \
-DSIGFOX_EP_RC3_LBT_ZONE=ON \
-DSIGFOX_EP_RC3_LDC_ZONE=ON \
-DSIGFOX_EP_RC4_ZONE=ON \
-DSIGFOX_EP_RC5_ZONE=ON \
-DSIGFOX_EP_RC6_ZONE=ON \
-DSIGFOX_EP_RC7_ZONE=ON \
-DSIGFOX_EP_APPLICATION_MESSAGES=ON \
-DSIGFOX_EP_CONTROL_KEEP_ALIVE_MESSAGE=ON \
-DSIGFOX_EP_BIDIRECTIONAL=ON \
-DSIGFOX_EP_ASYNCHRONOUS=ON \
-DSIGFOX_EP_LOW_LEVEL_OPEN_CLOSE=ON \
-DSIGFOX_EP_REGULATORY=ON \
-DSIGFOX_EP_LATENCY_COMPENSATION=ON \
-DSIGFOX_EP_SINGLE_FRAME=ON \
-DSIGFOX_EP_UL_BIT_RATE_BPS=OFF \
-DSIGFOX_EP_TX_POWER_DBM_EIRP=OFF \
-DSIGFOX_EP_T_IFU_MS=OFF \
-DSIGFOX_EP_T_CONF_MS=OFF \
-DSIGFOX_EP_UL_PAYLOAD_SIZE=OFF \
-DSIGFOX_EP_AES_HW=ON \
-DSIGFOX_EP_CRC_HW=OFF \
-DSIGFOX_EP_MESSAGE_COUNTER_ROLLOVER=OFF \
-DSIGFOX_EP_PARAMETERS_CHECK=ON \
-DSIGFOX_EP_CERTIFICATION=ON \
-DSIGFOX_EP_PUBLIC_KEY_CAPABLE=ON \
-DSIGFOX_EP_VERBOSE=ON \
-DSIGFOX_EP_ERROR_CODES=ON \
-DSIGFOX_EP_ERROR_STACK=12 ..
make precompil_sx126x_rf_api
The new files will be generated in the build/precompil
folder.
You can also download or clone any release of the SX126X RF API example and build a static library.
git clone https://github.com/sigfox-tech-radio/sigfox-ep-rf-api-semtech-sx126x.git
To build a static library, you have to install cmake
tool and run the following commands:
cd sigfox-ep-rf-api-semtech-sx126x/
mkdir build
cd build/
cmake -DSIGFOX_EP_LIB_DIR=<sigfox-ep-lib path> \
-DSIGFOX_EP_RC1_ZONE=ON \
-DSIGFOX_EP_RC2_ZONE=ON \
-DSIGFOX_EP_RC3_LBT_ZONE=ON \
-DSIGFOX_EP_RC3_LDC_ZONE=ON \
-DSIGFOX_EP_RC4_ZONE=ON \
-DSIGFOX_EP_RC5_ZONE=ON \
-DSIGFOX_EP_RC6_ZONE=ON \
-DSIGFOX_EP_RC7_ZONE=ON \
-DSIGFOX_EP_APPLICATION_MESSAGES=ON \
-DSIGFOX_EP_CONTROL_KEEP_ALIVE_MESSAGE=ON \
-DSIGFOX_EP_BIDIRECTIONAL=ON \
-DSIGFOX_EP_ASYNCHRONOUS=ON \
-DSIGFOX_EP_LOW_LEVEL_OPEN_CLOSE=ON \
-DSIGFOX_EP_REGULATORY=ON \
-DSIGFOX_EP_LATENCY_COMPENSATION=ON \
-DSIGFOX_EP_SINGLE_FRAME=ON \
-DSIGFOX_EP_UL_BIT_RATE_BPS=OFF \
-DSIGFOX_EP_TX_POWER_DBM_EIRP=OFF \
-DSIGFOX_EP_T_IFU_MS=OFF \
-DSIGFOX_EP_T_CONF_MS=OFF \
-DSIGFOX_EP_UL_PAYLOAD_SIZE=OFF \
-DSIGFOX_EP_AES_HW=ON \
-DSIGFOX_EP_CRC_HW=OFF \
-DSIGFOX_EP_MESSAGE_COUNTER_ROLLOVER=OFF \
-DSIGFOX_EP_PARAMETERS_CHECK=ON \
-DSIGFOX_EP_CERTIFICATION=ON \
-DSIGFOX_EP_PUBLIC_KEY_CAPABLE=ON \
-DSIGFOX_EP_VERBOSE=ON \
-DSIGFOX_EP_ERROR_CODES=ON \
-DSIGFOX_EP_ERROR_STACK=12 ..
make sx126x_rf_api
The archive will be generated in the build/lib
folder.