The SX126x repo was moved to the SudoMaker organization. Update the name and the link of the repo in README and submodule.

update-sx1262-driver-2
Jean-François Milants 2022-06-25 21:46:36 +02:00
rodzic 5a7f49301b
commit 3c1ba9d75e
2 zmienionych plików z 3 dodań i 3 usunięć

2
.gitmodules vendored
Wyświetl plik

@ -1,3 +1,3 @@
[submodule "libs/sx126x_driver"]
path = libs/sx126x_driver
url = git@github.com:YukiWorkshop/sx126x_driver.git
url = git@github.com:SudoMaker/sx126x_driver.git

Wyświetl plik

@ -50,7 +50,7 @@ The implementation specific for the Pinephone is located in the class `PineDio::
The implementation specific for the USB adapter is located in the class `PineDio::LoRa::UsbAdapter`. It uses the `spidev` API to access the SPI bus from the Linux userland.
Both classes derive from `SX126x`, the generic driver from [this repo](https://github.com/YukiWorkshop/sx126x_driver).
Both classes derive from `SX126x`, the generic driver from [this repo](https://github.com/SudoMaker/sx126x_driver).
The generic abstraction is provided by the class `PineDio::LoRa::PinedioLoraRadio`, which takes a reference to a `SX126x`-derived object (which can be either `PinephoneBackplate` or `UsbAdapter`).
@ -89,7 +89,7 @@ The test application (usb-communicator and pinephone-communicator) are also in a
This project is released under the terms of the **LGPLv3 license**.
## Acknowledgements
This project is based on [this C++ SX126x driver](https://github.com/YukiWorkshop/sx126x_driver) from [YukiWorkshop](https://github.com/YukiWorkshop).
This project is based on [this C++ SX126x driver](https://github.com/SudoMaker/sx126x_driver) from [SudoMaker](https://github.com/SudoMaker).
The implementation of the driver for the USB adapter is possible thanks to [rogerjames99's](https://github.com/rogerjames99) [fork](https://github.com/rogerjames99/spi-ch341-usb) of the [spi-ch341-usb module](https://github.com/gschorcht/spi-ch341-usb) from [Gunar Schorcht](https://github.com/gschorcht).