Hi all,
I have the following setup:
- AM335X (BeagleBoneBlack)
- Attached JTAG Debugger
- CCS 6.1.1
- BareMetal Project based on StarterWare
- I did my best to enable MMU and caches (I took the functions that were provided by StarterWare) and CCS shows in the bottom right corner "MMU On"
- --float_support is VFPv3
- --neon (NEON enabled in compiler flags)
- Optimization level is off
When I profile a code like the following with the "Profile Clock" inside CCS:
float a=0;
a+=3.1;
The code takes ~300 CPU cycles to execute, can this be correct / is this expected behaviour?