Is it possible with Kotlin Native to do embedded d...
# kotlin-native
f
Is it possible with Kotlin Native to do embedded development for MCUs? I am using a framework written in C called ESP-IDF for the ESP32, I was wondering if I could maybe use Kotlin native instead of C for this task? I looked at the samples and found no examples for embedded dev.
n
Since Kotlin Native is LLVM based it will only work on platforms that LLVM supports. Since LLVM doesn't support ESP32 that wouldn't be an option. Also Kotlin Native doesn't have an implementation for any of the uC platforms (eg ARM Cortex M).
f
I see, thank you for the response! I was really hoping that this would be a possibility.