Objective-C for microcontrollers?

I want to know whether it is possible to program the STM32 microcontroller using Objective-C. Is there an IDE with tools for compiling directly from Objective-C to native code?

Thanks in advance!

+4
source share
1 answer

STM32 - ARM. GCC can compile Objective-C into ARM native code. The real question is whether this is useful in the absence of frames from the Objective-C and Foundation environments. From this wiki page, there seems to have been some effort to create GNUStep for various ARM purposes. It might be a good place to start.

+3
source

All Articles