ARMmbed / mbed-semtech-lora-rf-drivers

Semtech's LoRa RF drivers for mbed OS
Other
31 stars 25 forks source link

Change static variables to class members #16

Closed kivaisan closed 6 years ago

kivaisan commented 6 years ago

Some variables were still defind as static in sources but as drivers are now C++ classes, these variables should be members of the class.

sillevl commented 6 years ago

I really like this refactoring. It will enable us to use inheritance to separate transceiver specific implementation, resulting in a reusable design. Thank you !