Tagged Questions
This tag is used for questions specific to the ARM processor core known as the Cortex-M3. This core supports the Thumb and Thumb2 instruction set but does not execute ARM instructions. For ARM questions not related specifically to the cortex-m3 core or thumb/thumb2 instruction set please use the ARM tag.
6
votes
1answer
1k views
arm gcc toolchain as arm-elf or arm-none-eabi, what is the difference?
When you build a gcc toolchain there is the possibility to build it as arm-elf or as arm-none-eabi, but what is the difference?
I use the eabi today, but that is just since everyone else seem to do ...
5
votes
1answer
6k views
Ubuntu: What gcc to use when crosscompiling for the STM32 (Cortex-M3)?
I'm trying to get started with the STM32 (Cortex-M3) and my plan is get this working from Ubuntu (9.04 / AMD64).
To start with I got the Olimex stm32-h103 header board and the Olimex ARM-USB-OCD ...
4
votes
4answers
93 views
Alignment of C structure in Internal FLASH memory
I have a configuration structure I would like to save on the internal flash of ARM cortex M3.
According to the specifications, the data save in the internal flash, must be aligned to 32bit.
Because I ...
4
votes
2answers
166 views
How does the in-application programming for ARM (Cortex M3) work?
I'm working on a custom Cortex-M3-based device and I need to implement in-application programming (IAP) mechanism so that it will be possible to update the device firmware without JTAG (we'll use TFTP ...
4
votes
1answer
247 views
LPC1700 won't wake up from deep sleep
I have firmware running on LPC1754, 59 and 68 + FreeRTOS + CMSIS.
I'd like to be able to put the microcontroller in the lowest power mode possible, but:
"sleep" is not enough.
Once the ...
4
votes
4answers
2k views
Advice needed for ARM Cortex M3 beginner
I will embark on the ARM Cortex M3 bandwagon soon with an official training (CPU side).
Now, I did a bit of Arduino and AVR before and have some basics in electronics but I am mostly a software ...
4
votes
1answer
585 views
Does the Cortex-M3 STM32F103 core stall during a flash page erase because the FPEC is busy and can't fetch any more instructions from flash?
On the STM32F103, the erasing of a flash page takes 20ms during which the core stalls for me. It's not clear from the ST PM00042 Flash programming manual whether the core would always stall when ...
4
votes
3answers
4k views
Add a custom compiler to XCode 3.2
I have a working gcc 4.3.3 toolchain for an ARM Cortex-m3 and would like to integrate it into XCode.
Is there a way to set up XCode (3.2) to use this gcc toolchain instead of the built-in GCC 4.2?
...
4
votes
7answers
6k views
STM32 Compiler/Debugger Chain?
I'm starting a project with a STMicro STM32. I've done the Google searches, looking for solid compiler/debugger chains but would prefer answers with success stories.
Open Source Compilers/Linkers ...
3
votes
2answers
234 views
Fixed point math with ARM Cortex-M4 and gcc compiler
I'm using Freescale Kinetis K60 and using the CodeWarrior IDE (which I believe uses GCC for the complier).
I want to multiply two 32 bit numbers (which results in a 64 bit number) and only retain the ...
3
votes
2answers
315 views
how to use llvm+clang to compile for stm32
Has someone infos how to build a llvm+clang toolchain using binutils and newlib and how to use it?
host: Linux, AMD64
target: cortex-m3, stm32
c-lib: newlib
assembler: gnu as
3
votes
1answer
240 views
Why does malloc only work immediately after flashing cortex-m3?
I'm trying to dynamically allocate memory using newlib's malloc running on a cortex-m3 (bare-metal) and I've run into a perplexing problem. Immediately after flashing the device, malloc and free both ...
3
votes
2answers
1k views
How can I determine appropriate stack and heap sizes for ARM Cortex, using C++
The cortex M3 processor startup file allows you to specify the amount of RAM dedicated to the stack and the heap. For a c++ code base, is there a general rule of thumb or perhaps some more explicit ...
3
votes
2answers
246 views
Zeroconf Name resolution
I am developing a control device with an embedded webserver. The webserver provides a control interface to any web browser that requests it (from Windows browsers, Mac browsers, iPhone android etc).
...
3
votes
3answers
1k views
ARM cortex: mutex using bit banding
Given that, on the ARM Cortex M3, I can:
atomically read a single bit
atomically set a single bit
atomically clear a single bit
How can I combine these for a mutex style set of operations:
try ...
3
votes
5answers
2k views
Which Cortex-M3 interrupts can I use for general purpose work?
I'd have some code that needs to be run as the result of a particular interrupt going off.
I don't want to execute it in the context of the interrupt itself but I also don't want it to execute in ...
2
votes
1answer
58 views
Cortex M3 - how to use semaphores
I have a question about using semaphores in cortex m3. I've found a thread "ARM cortex: mutex using bit banding" ARM cortex: mutex using bit banding .
There is a short description of the problem, and ...
2
votes
1answer
74 views
Does anybody know any very basic stm32 tutorials?
Recently I've started on a project which requires a Cortex M3 processor.
I have some previous experience with 8bit AVR microcontrollers, so I was hoping for a not to big transition.
So I've bought a ...
2
votes
3answers
66 views
How do I debug unexpected resets in a STM32 device?
I'm doing some development in C with a STM32F107 chip and, at some point, the device began to reset when I call a specific function. I don't have a debugger and my debugging is just plain text over a ...
2
votes
1answer
385 views
Eclipse GDB “init” and “run” settings for ARM LPC1768 using OpenOCD?
I finally figured out how to get code running on this LPC1768 mini board, however now I'm trying to get debugging working.
The toolchain I'm using is: Yagarto + Eclipse (Indigo) (w/ GDB Hardware ...
2
votes
1answer
135 views
How to set ARM user app start address when using USB bootloader?
Just picked up one of these ARM Cortex-M3 LPC1768 mini boards from eBay. It's basically a breakout board.
However, based on what little documentation came with it, I've determined that it has a USB ...
2
votes
2answers
128 views
GCC alias to function outside of translation unit -AKA- is this even the right tool for the job?
I'm working with FreeRTOS on an STM32 (Cortex-M3), and using the CMSIS library from ST to bootstrap everything.
The CMSIS library defines the weak symbol SVC_Handler in the startup ".s" file. It ...
2
votes
2answers
248 views
LPC17xx: Check if RTC is running
I am using NXP LPC17xx family microcontrollers (LPC1759 and LPC1768).
How can I determine if RTC is running for sure?
I am doing a test on
LPC_RTC->CCR & RTC_CCR_CLKEN
but it seems no much ...
2
votes
1answer
209 views
Data Memory Barrier (DMB) in CMSIS libraries for Cortex-M3s
In the CMSIS definitions for gcc you can find something like this:
static __INLINE void __DMB(void) { __ASM volatile ("dmb"); }
My question is: what use does a memory barrier have if it does not ...
2
votes
2answers
255 views
load time base address cortex-m3 bare metal
I'm working on a project on a cortex-m3 CPU with bare-metal environment.
Due to software upgrade needs the executable image on the CPU can be in one of two addresses in the flash memory which presents ...
2
votes
2answers
853 views
Linker script for C++ program for LM3S8962 unhosted using Codesourcery lite toolchain?
Does anyone have a linker script specifically for the Stellaris LM3S8962 board or could explain how to create one? I am using the codesourcery g++ lite toolchain and can successfully create the elf ...
2
votes
4answers
2k views
Output debug via printf on a Cortex-M3 CPU, stalls at BKPT instruction + confusion about JTAG and sw ports
I have a Keil ULINK2 USB emulator box attached to the JTAG connector on my board, which is working fine with the Cortex-M3 CPU onboard (TI/Stellaris/LuminaryMicro LM3S series). It seems that both a ...
2
votes
1answer
731 views
Debugging Cortex M3 (ARM) Embedded - How do you tell what ISR is being run from xPSR.ISR?
I am debugging a piece of firmware on an arm-family cpu (Cortex M3).
The debugger shows the CPU registers, including one called 'xPSR' which includes a sub-field called 'ISR'. The mode in the CPU ...
2
votes
2answers
689 views
Accessing the MSP and PSP registers of the Cortex-M3 in C/C++ code using Keil's µVision
I need to access the MSP and PSP registers (the main and process stack registers) of the Cortex-M3 processor.
I'm writing in C/C++.
The µVision and associated compiler doesn't let you do inline ...
2
votes
1answer
551 views
Passing parameters between interrupt handlers on a Cortex-M3
I'm building a light kernel for a Cortex-M3.
From a high priority interrupt I'd like to invoke some code to run in a lower priority interrupt and pass some parameters along.
I don't want to use a ...
1
vote
2answers
57 views
Advice on linker script creation and verification
Long story short. I wish to learn how to create a good linker script so that should I change platforms/architectures/vendors, I'm not stuck at ground zero again with not knowing what to do. I'm not ...
1
vote
0answers
36 views
How can I make Keil RealView ARM MDK (for Cortex-M3) work with BOTH retargeting(to USART) and STL?
I've been searching for a workaround for days. So far no luck.
What I use:
STM32F103VET6
J-Link
RealView MDK-ARM v4.12
Both C and C++ code in my program
Before I included STL in my code, ...
1
vote
1answer
67 views
gdb - generate-core-file for remote target?
I'm debugging with the Codesourcery version of gdb for ARM (i.e. arm-none-eabi-gdb) and attempting to generate a corefile for later inspection. OpenOCD is my GDB target. All gdb tells me when I run ...
1
vote
2answers
306 views
Toolchain ARM Cortex M4
is there a way how to setup Eclipse + gnu gcc + debuger for ARM Cortex M3/M4 based micros (Stellaris, Kinetis)?
Best regards,
Peter
1
vote
3answers
291 views
STM32 programming tips and questions
I could not find any good document on internet about STM32 programming. STM's own documents do not explain anything more than register functions. I will greatly appreciate if anyone can explain my ...
1
vote
0answers
351 views
embedded uclinux footprint on cortex M3
I am having trouble with this question, somebody (hopefully mistakenly) moved the previous question to Unix/Linux list which has zero uclinux tagged questions. This is more of a embedded linux ...
1
vote
2answers
202 views
Looking for MCU with AES. Migrating from STM32F107
I'm looking for Microcontrollers based on the ARM Cortex-M3. The MCU should have an AES Accelerator, SPI, (at least 3) USARTs, USB OTG. I'm migrating from STM32F107 (the reason I'm migrating is ...
1
vote
1answer
395 views
gcc link file for memory map, what syntax is that?
When using gcc to cross-compile for an MCU you provide a linker script file to the linker so it knows how to create the final object file.
I would like to learn more about this type of file, but ...
1
vote
2answers
326 views
Can Libffi be built for Cortex-M3?
I'm trying to build the foreign function interface library for a Cortex-M3 processor using GCC. According to http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html:
-mthumb
Generate code for the ...
1
vote
1answer
1k views
Example code for ARM Cortex M3 based MCUs?
More specifically the STM32F107.
I could barely find any code on ST's website, not even downloadable libraries (though I have found mention of some that indicates that they should exist?). This ...
1
vote
5answers
3k views
.NET Micro Framework on a ARM Cortex-M3 Core
I have a RDK-IDM from Luminary Micro. This board has a 32-bit ARM® Cortex™-M3 core. Has anybody tried to run a .NET Micro Framework application on such a device?
0
votes
1answer
14 views
How can I make an empty section with GNU ld?
I'm working on a cortex-m3 chip. The stack space was reserved in the source code with an uninitialized array on the bss section. The linker script I used is as follows:
MEMORY
{
FLASH (rx) : ...
0
votes
1answer
153 views
ARM assembly 'delay' function not working with unified / thumb-2 syntax
I'm using the following code to do a simple counter-based delay/wait for ARM:
.thumb_func
dowait:
ldr r7,=0x200000
dowaitloop:
sub r7,#1
bne dowaitloop
bx lr
I got this function ...
0
votes
0answers
71 views
What are the most reliable fault handling strategies? [closed]
What do you consider to be the most reliable fault handling strategy? What can one do so that his/her embedded system works well continously and correctly?
Why are there multiple types os fault ...
0
votes
1answer
149 views
Reprogramming DMA start address using STM32F103 microcontroller (Cortex-M3)
StackOverflow Wizards:
The below IRQ handler drains the USART3 of incoming 32 byes of data. The first IRQ TC event reads the first 6 bytes, then reprograms the DMA engine to read in the last 24 ...
0
votes
2answers
923 views
How do I run linux on an ARM Cortex M3 board?
I have a Luminary LM3s8962 ARM Cortex M3 development board, and while I've been able to program for it using the Keil RTOS, I'd much prefer to develop on top of linux and an embedded libc. What I ...
0
votes
1answer
540 views
LPC17xx debug issues in Eclipse/OCD
I'll try to be complete and specific:
NXP LPC1756 Cortex-M3. Eclipse Helios using Codesourcery ARM toolchain along with OpenOCD for debugging. JTAG is Olimex ARM-USB-OCD. OS is Windows 7 64-bit.
I ...
0
votes
1answer
536 views
Why would cortex-m3 reset to address 0 in gdb?
I am building a cross-compile toolchain for the Stellaris LM3S8962 cortex-m3 chip. The test c++ application I have written will execute for some time then fault. The fault will occur when I try to ...
0
votes
2answers
941 views
“CPU is not halted” and “No APB-AP found” error
When I use JTAG to load my C code to evaluation board, it loads successfully. However, when I executed my code from main(), I immediately got "CPU is not halted" error, followed by "No APB-AP found" ...
-2
votes
2answers
205 views
CORTEX lpc1768 tutorial
I need some tutorial for working with cortex lpc1768.i think it doesn't have good document on it. please give me some information and tutorials for it.