From 3c1ba9d75ed55db50ffe0b9479ac829e87315b80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Milants?= Date: Sat, 25 Jun 2022 21:46:36 +0200 Subject: [PATCH] The SX126x repo was moved to the SudoMaker organization. Update the name and the link of the repo in README and submodule. --- .gitmodules | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index e41b7b8..b7fe790 100644 --- a/.gitmodules +++ b/.gitmodules @@ -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 diff --git a/README.md b/README.md index 4cb4c6e..28d56c1 100644 --- a/README.md +++ b/README.md @@ -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).