Could I use Cortex-A for embedded applications?

I need a little digital io for my project since cortex-m is not economical for me I need to know can i use Cortex-a to do some embedded jobs?

Parents
  • There is no reason why a Cortex-A core should not be used in an embedded application.

    Cortex-A devices can offer considerably more processing power than Cortex-M devices and this may be your criteria for choosing one.

    Perhaps a more important criteria is that Cortex-A devices incorporate a Memory Management Unit which allows implementation of a full virtual memory system. This means you can use platform operating systems such as Linux. Mainstream Linux cannot be run on a Cortex-M platform because these devices do not support virtual memory.

    With the launch of the latest cores in the Cortex-A family, Cortex-A35 and Cortex-A32, there are now Cortex-A options which have very low power consumption and are very efficient. These are a natural choice for a rich embedded application.

    Chris

Reply
  • There is no reason why a Cortex-A core should not be used in an embedded application.

    Cortex-A devices can offer considerably more processing power than Cortex-M devices and this may be your criteria for choosing one.

    Perhaps a more important criteria is that Cortex-A devices incorporate a Memory Management Unit which allows implementation of a full virtual memory system. This means you can use platform operating systems such as Linux. Mainstream Linux cannot be run on a Cortex-M platform because these devices do not support virtual memory.

    With the launch of the latest cores in the Cortex-A family, Cortex-A35 and Cortex-A32, there are now Cortex-A options which have very low power consumption and are very efficient. These are a natural choice for a rich embedded application.

    Chris

Children