-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for STM32? #4
Comments
ChibiOS/RT has excellent support for STM32. I use it with devices like Maple Mini. |
Thanks for the pointer! I guess I am coming to this backwards, I developed a program for Arduino nano first then migrated to the blue pill for more speed. Now I was wondering if I could potentially parallelize things. I saw there is also freertos 9 in the stm32 libs for Arduino...
Sent from Yahoo Mail on Android
On Sun, Dec 3, 2017 at 5:59, Bill Greiman<[email protected]> wrote:
ChibiOS/RT has excellent support for STM32.
I use it with devices like Maple Mini.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Native ChibiOS/RT on STM32 is far better than a port of an RTOS to Arduino. The HAL is truly multi-thread friendly. I/O for various devices overlap with threads sleeping when necessary, no delays wasting CPU. There are locks so threads optimally share devices. I can run 10 threads on an 100 mbit Ethernet port and get 99% usage with fair sharing. |
Sounds great! Any chance I can use Visual Studio Code as the ide? I finally got hardware debugging working with it albeit using the Arduino plugin which would not be relevant in this case.
Sent from Yahoo Mail on Android
On Mon, Dec 4, 2017 at 5:56, Bill Greiman<[email protected]> wrote:
Native ChibiOS/RT on STM32 is far better than a port of an RTOS to Arduino.
The HAL is truly multi-thread friendly. I/O for various devices overlap with threads sleeping when necessary, no delays wasting CPU. There are locks so threads optimally share devices.
I can run 10 threads on an 100 mbit Ethernet port and get 99% usage with fair sharing.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
The best development/debug environment is ChibiStudio.
|
Hi, would it be possible to add support for STM32F1 devices like Maple Mini clones?
Thank you so much for adding that support for SdFat!
The text was updated successfully, but these errors were encountered: