Porting the library to STM32CubeIDE #300
HamzaHajeir
started this conversation in
General
Replies: 1 comment 6 replies
-
Essentially, you'd have to port everything from Arduino that is used in Module.cpp, which is:
So you'd have to make your own implementation of Arduino API. The question then arises - can't you use stm32duino? That project also uses STM32 HAL, but builds an Arduino layer on top of it, which is pretty much what you would be doing. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
Thank you for this kind and great library @jgromes.
I'm using SX1278/76 in a product, I'm using this library flashing ESP8266. And it works great!
However, the other node is programmed over STM32CubeIDE, using HAL libraries.
I'm using a workable library, but it doesn't support asynchronous receiving/transmitting of messages as RadioLib does.
In my to-do's, I'm improving and enhancing a protocol, for the protocol to be developed, as it requires async receiving of messages, So I've decided to port this library (SX127x module) to STM32 HAL.
What should I consider for this work to be done?
And I'm aware that I'd need to port the interrupt handlers, what else needed to be ported?
Any comment, guidance, and suggestion is welcomed!
Beta Was this translation helpful? Give feedback.
All reactions