Tagged Questions
The stm32 tag has no wiki summary.
7
votes
1answer
87 views
Removal of unused template instantiation's static members
I am currently involved embedded C++ development on am STM32 platform. Our team is evaluating the use of templates to parametrize drivers for various low-level hardware devices.
All valid template ...
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
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
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
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
526 views
Detecting open PC COM port from USB Virtual Com Port device
I am using an STM32F015 microcontroller with the STM32_USB-FS-Device_Lib_V3.2.1 USB library and have adapted the VCP example for our purposes (integration with RTOS and serial API).
The problem is ...
3
votes
2answers
2k views
How do I execute a function from RAM on a Cortex-M3 (STM32)?
I'm trying to execute a function from RAM on a Cortex-M3 processor (STM32). The function erases the and rewrites the internal flash, so i definitely needs to be in RAM but how do I do that?
What I ...
3
votes
3answers
2k views
Running multiple applications in STM32 flash
I would like to have two applications in my STM32 flash, one is basically a boot and the other the 'main' application. I have figured out how to load each of them into different areas of flash, and ...
2
votes
0answers
29 views
Ctags generation from specific header file
I have just started learning with STM32 microprocessors (C only) and I would like to generate ctags for vim-omniccpcomplete, but there is a little problem that header file for this MCU is written ...
2
votes
1answer
75 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
2answers
58 views
STM32 function pointer from event handler
I am wondering whether it is safe to call a function via a function pointer while inside a event handler on a STM32. The event handler is for I2C and has the highest priority. The function to be ...
2
votes
4answers
150 views
snprintf crash when displaying %d or %u
I'm trying to print an integer into a string with snprintf for display on an OLED display from an ARM micro. However, when I use %d or %u the micro locks up and stops executing.
Using %x or %c works ...
2
votes
1answer
540 views
STM32 GDB/OpenOCD Commands and Initialization for Flash and Ram Debugging
I am looking for assistance with the proper GDB / OpenOCD initializion and run commands (external tools) to use within Eclipse for flash and ram debugging, as well as the proper modifications or ...
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
2answers
56 views
Two's complement stm32 c
I have a number that is "significant byte", it may be 0 or 255.
Which means 0 or -1.
How to convert 255 to -1 in one time.
I have a function that doesn't works for me:
acc->x = ((raw_data[1]) ...
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
1answer
479 views
I2C, pullup resistors (STM32 discovery)
I am sending my data trought I2C (using DMA every 1s).
I´ve added two pullup-resistors to SCK and SDATA.
There are now slaves, so because no respond, master send only slave adress and thats all.
Its ...
1
vote
1answer
310 views
Accessing USB webcam via Cortex-M3
Afternoon all,
A am wondering if it is at all possible to hijack the video stream of a USB webcam via a microcontroller (STM32F103, Cortex M3, 73MHz) to add a HUD to the device. Then re-package the ...
1
vote
2answers
434 views
STM32f103 Micro controller CAN messages
I am wondering if anyone is familiar with any STM32f10x micro-controllers? If so, I am having some problems configuring a CAN driver. I can run the demo code, which is set to a loop_Back mode, but I ...
1
vote
1answer
296 views
C programming on IAR
I am coding on the IAR platform and want to do the following. I have a typedef as follows
struct timer {
uint32_t start;
uint32_t interval;
};
typedef (void) (*etimer_cb) (int,void*);
struct ...
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
7answers
1k views
STM32 printf problem
* UPDATE *
here is what I found. Whenever I had that function in there it wouldnt actually make the code lock up. what it would actually do is make the Read RTC I2C function very slow to execute but ...
1
vote
1answer
2k views
STM32 I2C1 Start bit not set on SR1 register
I am trying to program the stm32 to talk to my i2c EEprom, but it seems like everytime I say:
I2C_GenerateSTART(I2C1, ENABLE);
while( !(I2C_CheckEvent(I2C1, I2C_EVENT_MASTER_MODE_SELECT)) ); the ...
0
votes
1answer
62 views
Writing Flash on STM32
I am implementing a emulated EEPROM in flash memory on a STM32 microprocessor, mostly based on the Application Note by ST (AN2594 - EEPROM emulation in STM32F10x microcontrollers).
The basics outline ...
0
votes
1answer
33 views
Constrain function port from Arduino
I'm now porting arduino code to stm32(c/c++). Please help me with this function:
constrain(x, a, b)
Returns
x: if x is between a and b
a: if x is less than a
b: if x is greater than b
Example
...
0
votes
1answer
110 views
How to read a sequence of bytes through I2C?
I want to read a sequence of bytes from my accelerometer. I can't get it work.
When I read byte by byte all is ok, but when I try to read sequence I can't get a true values.
void ...
0
votes
2answers
107 views
“cast from 'uint8_t*' to 'uint16_t' loses precision” when compiling for STM32
I'm trying to port out the Arduino Ethernet library to libmaple for use with STM32 devices. When compiling (using the CodeSourcery GCC toolchain). I get
libraries/Ethernet/w5100.cpp:111: error: cast ...
0
votes
0answers
39 views
STM32: non-initialized variables?
using the uvision IDE for STM32 development, I want to have some timer variables not initialized at startup. I have tried:
volatile unsigned int system_time __attribute__((section(".noinit")));
and
...
0
votes
2answers
254 views
How to properly initialize I2C stm32?
I want to get data from ADXL345 accelerometer,but seems that I incorrectly connect it.
SCL- PC6(with 10k resistor)
SDA- PC7(with 10k resistor)
SDO- GND
CS - VCC
GND - GND
3.3v - VCC
Here is my ...
0
votes
1answer
110 views
Undefined reference to extern int stm32
I'm using Atrollic Studio(problem also exists in Eclipse).
.h file
extern int i2cInitIO(uint channel, uint hz);
extern int i2cIO(uint device, byte *put, uint putlen, byte *get, uint getlen);
.c ...
0
votes
2answers
118 views
How to program STM32
Im a total beginner with programming ARM microcontroller, But I do have experience with AVR and PIC microcontrollers.
Few days back i have purchased (STM32 STM32F103VET6 development) from ebay.com.
...
0
votes
0answers
110 views
SPI is reading data as zero in STM32F103ZE
I am using STM32F103ZE
I am not getting SPI data correctly.
Master is transmitting correctly.
But always read as zero where a non zero value has been sent.
Master config: (MSP430)
The master ...
0
votes
1answer
144 views
newlib sscanf() throw hardfault exception in stm32
i use gcc compile my project, use the function sscanf() in main, the stack size is 4k, i debug the program in gdb, show VPUSH instruction throw the exception.
and i test the function sprintf(), it ...
0
votes
1answer
1k views
how to program the STM32 flash using openOCD and gdb
I'm using an Olimex ARM-USB-OCD dongle with openOCD and GDB to program and debug an stm32f103 micro. The IDE I'm using came from the Olimex dev-kit CD and makes use of eclipse ganymede.
I can load a ...