Use the right tool for the job: embedded programming

后端 未结 8 1642
[愿得一人]
[愿得一人] 2020-12-23 22:47

I\'m interested in programming languages well suited for embedded programming. In particular:

Is it possible to program embedded systems in C++? Or is it better to u

8条回答
  •  臣服心动
    2020-12-23 23:17

    Embedded programming these days spans a large range of applications.
    Roughly, it goes from sensors/switches up to complete security systems.
    You should base your language on the complexity and the hardware resources.
    It is 1 of the choices next to HW (CPU,...), OS, protocols,...
    possible choices:

    • switches: assembler
    • router-like devices: C and/or C++
    • handhelds: Java or QT/C++
    • complete systems: combinations C and/or C++ with python

提交回复
热议问题