Posted on November 12, 2013 at 04:01
HELP!!!!
I've been banging my head against my keyboard and I can't find what's wrong with this code:
/*********************************************************
**** INITIALIZE TIMER AND PWM ...
Posted on September 12, 2012 at 08:10Hi,I want to have the ability to read/write to a specific address in RAM. How could I do that in C.Any suggestions? #really-bad-idea
Posted on August 28, 2012 at 09:03
I am trying to get OpenOCD to work with my STM32F4Discovery board and I get the following error:
fabio@fs-1:~/workspace/stm32_code/test$ openocd -d 3 -f ./openocd.cfg
Open On-Chip Debugger 0.6.0-rc1-...
Posted on November 13, 2013 at 01:18
New news. I have an interrupt enabled for channels 1. That seems to be the problem. Here's the code:
TIM_ICInitTypeDef TIM_ICInitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_InitStructure.NVIC_...
Posted on September 13, 2012 at 16:37It has to do with giving flexibility to the system design. If I have access to an specific address, then I only have one command from an external domain to read/write to that address.Also, I can use the same comm...
Posted on September 12, 2012 at 10:01
Looks like I found the solution:
uint32_t *pointer;
uint32_t pi,pii;
//SAVING DATA
pi = 0x20000000;//RECEIVE ADDRESS AND SAVE IT INTO A INTEGER
pointer = (uint32_t*)pi; //CONVERT IT INTO POINTER
*...
Posted on August 29, 2012 at 16:22
I've tried... no luck.
I am looking at the config.log file and there are errors. Here are the first few lines of it:
running configure, to aid debugging if configure makes a mistake.
It was c...