Quick Links
cortex m3 and OS
#1
Posted 31 January 2011 - 10:10 AM
Iam working on cortex m3 (NXP1768). i have question regarding cortex m3
since it does not have MMU
1. how the operationg system is ported on these?.
2. who does the functionality of MMU if os can be ported?
3. ARM said that uClinux has to be used. Does this mean that other os cannot be ported? ,
4. what is the max clock frequency of core?
Guru
#2
Posted 31 January 2011 - 12:27 PM
(2) Why do you need the functionality of an MMU in a microcontroller OS?
(3) uClinux is a version of Linux ported to ... use a flat map memory and an MPU like an RTOS. Pretty much every commercial RTOS will run without an MMU.
(4) It depends on the implementation - look at the datasheets from the various SoC manufacturers. For the LPC1700 series they are rated at 120Mhz max frequency.
#3
Posted 08 February 2011 - 09:19 AM
To guard OS data structure from corruption...?
#4
Posted 08 February 2011 - 12:49 PM
Quote
You don't need an MMU to provide protection of critical data - although it can be used for that - the MPU in the Cortex-M and Cortex-R series does that job perfectly well.
The extra feature an MMU provides is virtual memory - the ability to remap a physical address into a different virtual address - I don't understand why you need that in an RTOS. [I's a rhetorical quesution really - the anser is "you don't", hence why most micro-controllers support and MPU and not an MMU].
Iso
#5
Posted 08 February 2011 - 01:30 PM














