dotnet / iot

This repo includes .NET Core implementations for various IoT boards, chips, displays and PCBs.
MIT License
2.12k stars 574 forks source link

System.Device.* #2290

Closed Korporal closed 3 months ago

Korporal commented 3 months ago

I'm trying to find out what other packages exist for additional devices, for example timers. Consider theSTM32MP family, these have lots of timers (just as ST's MCUs do) but I can find no explicit support or discussions about these.

Any information is appreciated!

Ellerbach commented 3 months ago

Check out .NET nanoFramework: https://www.nanoFramework.net and https://github.com/nanoframework

It is dedicated to work on MCU, API are aligned with .NET IoT (small differences but 99% of the code is compatible), there most all the Bindings available as well and some specific MCU additional ones.

Ellerbach commented 3 months ago

[Triage] We can only add support what runs .NET natively. On top of the previous answer, you can look at https://github.com/dotnet/iot/tree/main/src/devices/Arduino, that can also be something that fits your needs.

So closing this issue. Feel free to reopen in case.